mirror of
https://github.com/zeldaret/tp
synced 2026-08-06 01:48:59 -04:00
OK drawDoneCallback__8JUTVideoFv
This commit is contained in:
@@ -29,19 +29,26 @@ public:
|
||||
s16 getDisplayingXfbIndex() const { return mDisplayingXfbIndex; }
|
||||
s32 getSDrawingFlag() const { return mSDrawingFlag; }
|
||||
|
||||
void* getDrawnXfb() const {
|
||||
if (mDrawnXfbIndex >= 0)
|
||||
return mBuffer[mDrawnXfbIndex];
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void* getDrawningXfb() const {
|
||||
if (mDrawingXfbIndex >= 0)
|
||||
return mBuffer[mDrawingXfbIndex];
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void* getDisplayingXfb() const {
|
||||
if (mDisplayingXfbIndex >= 0)
|
||||
return mBuffer[mDisplayingXfbIndex];
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void setDisplayingXfbIndex(s16 index) {
|
||||
mDisplayingXfbIndex = index;
|
||||
}
|
||||
|
||||
void setSDrawingFlag(s32 flag) {
|
||||
mSDrawingFlag = flag;
|
||||
}
|
||||
void setDisplayingXfbIndex(s16 index) { mDisplayingXfbIndex = index; }
|
||||
void setSDrawingFlag(s32 flag) { mSDrawingFlag = flag; }
|
||||
|
||||
static JUTXfb* getManager() { return sManager; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user