diff options
author | Diegoisawesome <Diegoisawesome@users.noreply.github.com> | 2018-02-28 09:29:28 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-28 09:29:28 -0600 |
commit | 19b467e49f2a1dcf3845747dbc2f53586cc02fce (patch) | |
tree | 6dded1d66c6c125ecf41625f15ef655a00ca17b3 /include | |
parent | 5162393c166ab9a37ec22993df6588080f1a9aa0 (diff) | |
parent | 85a959f321dfa01c9c76f9c74fbbda55614271da (diff) |
Merge pull request #223 from DizzyEggg/decompile_blit
Decompile blit
Diffstat (limited to 'include')
-rw-r--r-- | include/blit.h | 10 | ||||
-rw-r--r-- | include/clock.h | 2 |
2 files changed, 11 insertions, 1 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 diff --git a/include/clock.h b/include/clock.h index 4e6560c91..aa179bf6f 100644 --- a/include/clock.h +++ b/include/clock.h @@ -5,4 +5,4 @@ void DoTimeBasedEvents(void); -#endif +#endif // GUARD_CLOCK_H |