mDoGph_Painter fixed

This commit is contained in:
LagoLunatic
2024-01-07 03:29:50 -05:00
parent 6ec8c70295
commit f683c2bfc4
4 changed files with 50 additions and 47 deletions
+8 -4
View File
@@ -46,15 +46,19 @@ public:
void draw() const;
void drawHead() const;
void drawTail() const;
void setCallBackPacket(J3DCallBackPacket* pPacket);
u32 getEntryTableSize() { return mBufSize; }
inline void calcZRatio();
J3DPacket* getEntryPacket(u16 i) { return mpBuf[i]; }
u32 getEntryTableSize() { return mBufSize; } // Unused in TWW, but exists in TP
void setNonSort() { mSortType = (u32)SORT_NON; }
void setZSort() { mSortType = (u32)SORT_Z; }
void setInvalidSort() { mSortType = (u32)SORT_INVALID; }
void setZMtx(MtxP mtx) { mpZMtx = mtx; }
void setCallBackPacket(J3DCallBackPacket* pPacket);
void calcZRatio() {
mZRatio = (mZFar - mZNear) / (f32)mBufSize;
}
void getSortMode() {}
public:
/* 0x00 */ J3DPacket** mpBuf;