diff options
author | Fire_Head <Fire-Head@users.noreply.github.com> | 2019-06-02 05:15:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-02 05:15:00 +0200 |
commit | 809c81ea9ce66b998e0ebaf17965843337c4fdd9 (patch) | |
tree | c1b34122ddd4be0461a5310c964e8218b9f5781e /src/render/Sprite.h | |
parent | skeleton updated, windows specific stuff added (diff) | |
parent | implemented splashes; fixed zones (diff) | |
download | re3-809c81ea9ce66b998e0ebaf17965843337c4fdd9.tar re3-809c81ea9ce66b998e0ebaf17965843337c4fdd9.tar.gz re3-809c81ea9ce66b998e0ebaf17965843337c4fdd9.tar.bz2 re3-809c81ea9ce66b998e0ebaf17965843337c4fdd9.tar.lz re3-809c81ea9ce66b998e0ebaf17965843337c4fdd9.tar.xz re3-809c81ea9ce66b998e0ebaf17965843337c4fdd9.tar.zst re3-809c81ea9ce66b998e0ebaf17965843337c4fdd9.zip |
Diffstat (limited to '')
-rw-r--r-- | src/render/Sprite.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/render/Sprite.h b/src/render/Sprite.h index 7bc5c35e..33953ff3 100644 --- a/src/render/Sprite.h +++ b/src/render/Sprite.h @@ -13,6 +13,7 @@ public: static void InitSpriteBuffer2D(void); static void FlushSpriteBuffer(void); static void RenderOneXLUSprite(float x, float y, float z, float w, float h, uint8 r, uint8 g, uint8 b, int16 intens, float recipz, uint8 a); + static void RenderOneXLUSprite_Rotate_Aspect(float x, float y, float z, float w, float h, uint8 r, uint8 g, uint8 b, int16 intens, float recipz, float roll, uint8 a); static void RenderBufferedOneXLUSprite(float x, float y, float z, float w, float h, uint8 r, uint8 g, uint8 b, int16 intens, float recipz, uint8 a); static void RenderBufferedOneXLUSprite_Rotate_Dimension(float x, float y, float z, float w, float h, uint8 r, uint8 g, uint8 b, int16 intens, float recipz, float roll, uint8 a); static void RenderBufferedOneXLUSprite_Rotate_Aspect(float x, float y, float z, float w, float h, uint8 r, uint8 g, uint8 b, int16 intens, float recipz, float roll, uint8 a); |