diff options
author | KDSKardabox <bollygame94@gmail.com> | 2018-03-01 09:13:29 +0530 |
---|---|---|
committer | KDSKardabox <bollygame94@gmail.com> | 2018-03-01 09:13:29 +0530 |
commit | 85492c0dacb5222ebbd43f652c44448ca89de0f9 (patch) | |
tree | ccb4168b0cb800398a810789e59c108003def9bd /include/blit.h | |
parent | 2f9d69f67fef723e3a92bb19c73952f6896e27ad (diff) | |
parent | c0357cea46635ec3867d18e43b341fb7a4a2fef2 (diff) |
Merge branch 'master' of https://github.com/pret/pokeemerald
Diffstat (limited to 'include/blit.h')
-rw-r--r-- | include/blit.h | 10 |
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 |