diff options
Diffstat (limited to 'src/GPU2D.h')
-rw-r--r-- | src/GPU2D.h | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/src/GPU2D.h b/src/GPU2D.h index 4bf698d..3deb42d 100644 --- a/src/GPU2D.h +++ b/src/GPU2D.h @@ -36,6 +36,18 @@ public: void Write16(u32 addr, u16 val); void Write32(u32 addr, u32 val); + bool UsesFIFO() + { + if (((DispCnt >> 16) & 0x3) == 3) + return true; + if ((CaptureCnt & (1<<25)) && ((CaptureCnt >> 29) & 0x3) != 0) + return true; + + return false; + } + + void SampleFIFO(u32 offset, u32 num); + void DrawScanline(u32 line); void VBlank(); void VBlankEnd(); @@ -48,12 +60,14 @@ public: u16* GetBGExtPal(u32 slot, u32 pal); u16* GetOBJExtPal(u32 pal); - void FIFODMA(u32 addr); - private: u32 Num; u32* Framebuffer; + u16 DispFIFO[16]; + u32 DispFIFOReadPtr; + u32 DispFIFOWritePtr; + u16 DispFIFOBuffer[256]; u32 DispCnt; |