aboutsummaryrefslogtreecommitdiff
path: root/render.h
diff options
context:
space:
mode:
Diffstat (limited to 'render.h')
-rw-r--r--render.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/render.h b/render.h
index be03f02..fc6fed1 100644
--- a/render.h
+++ b/render.h
@@ -84,4 +84,21 @@ void render_bitmap_col(
Colour colour
);
+void blit(
+ Bitmap* dst,
+ const Bitmap* src,
+ int x,
+ int y,
+ const Rectangle* rect
+);
+
+void blit_col(
+ Bitmap* dst,
+ const Bitmap* src,
+ int x,
+ int y,
+ const Rectangle* rect,
+ Colour colour
+);
+
#endif