summaryrefslogtreecommitdiff
path: root/include/blit.h
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2018-03-02 21:49:09 -0500
committerPikalaxALT <pikalaxalt@gmail.com>2018-03-02 21:49:09 -0500
commitdf128cbfedcaf8a0da698ba9a9e62bed21721e1c (patch)
tree6f12e1991e59856f83711d469020072a5321da3e /include/blit.h
parente3b078d08fb7208065cb6bda96879fbb6e97c5db (diff)
parent0a9f0d80f5f3d1cf02ae26a7bad1d771f8dedc52 (diff)
Merge branch 'master' into pokenav_match_call
Diffstat (limited to 'include/blit.h')
-rw-r--r--include/blit.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/blit.h b/include/blit.h
new file mode 100644
index 000000000..e7f384cc8
--- /dev/null
+++ b/include/blit.h
@@ -0,0 +1,10 @@
+#ifndef GUARD_BLIT_H
+#define GUARD_BLIT_H
+
+void BlitBitmapRect4BitWithoutColorKey(struct Bitmap *src, struct Bitmap *dst, u16 srcX, u16 srcY, u16 dstX, u16 dstY, u16 width, u16 height);
+void BlitBitmapRect4Bit(struct Bitmap *src, struct Bitmap *dst, u16 srcX, u16 srcY, u16 dstX, u16 dstY, u16 width, u16 height, u8 colorKey);
+void FillBitmapRect4Bit(struct Bitmap *surface, u16 x, u16 y, u16 width, u16 height, u8 fillValue);
+void BlitBitmapRect4BitTo8Bit(struct Bitmap *src, struct Bitmap *dst, u16 srcX, u16 srcY, u16 dstX, u16 dstY, u16 width, u16 height, u8 colorKey, u8 paletteOffset);
+void FillBitmapRect8Bit(struct Bitmap *surface, u16 x, u16 y, u16 width, u16 height, u8 fillValue);
+
+#endif // GUARD_BLIT_H