diff options
Diffstat (limited to 'src/GPU2D.h')
-rw-r--r-- | src/GPU2D.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/GPU2D.h b/src/GPU2D.h index 3e9dc36..d059fa0 100644 --- a/src/GPU2D.h +++ b/src/GPU2D.h @@ -93,6 +93,8 @@ private: u8 BGMosaicSize[2]; u8 OBJMosaicSize[2]; + u8 BGMosaicY, BGMosaicYMax; + u8 OBJMosaicY, OBJMosaicYMax; u16 BlendCnt; u16 BlendAlpha; @@ -123,8 +125,8 @@ private: void InterleaveSprites(u32* buf, u32 prio, u32* dst); void DrawSprites(u32 line, u32* dst); void DrawSpritesWindow(u32 line, u8* dst); - template<bool window> void DrawSprite_Rotscale(u16* attrib, u16* rotparams, u32 boundwidth, u32 boundheight, u32 width, u32 height, s32 xpos, u32 ypos, u32* dst); - template<bool window> void DrawSprite_Normal(u16* attrib, u32 width, s32 xpos, u32 ypos, u32* dst); + template<bool window> void DrawSprite_Rotscale(u16* attrib, u16* rotparams, u32 boundwidth, u32 boundheight, u32 width, u32 height, s32 xpos, s32 ypos, u32* dst); + template<bool window> void DrawSprite_Normal(u16* attrib, u32 width, s32 xpos, s32 ypos, u32* dst); void DoCapture(u32 line, u32 width, u32* src); |