diff options
| author | Jasper St. Pierre <jstpierre@mecheye.net> | 2023-10-10 23:48:46 -0700 |
|---|---|---|
| committer | Jasper St. Pierre <jstpierre@mecheye.net> | 2023-10-10 23:48:46 -0700 |
| commit | f63b762c8dd677cfd127bf90f7eff0f82bad4533 (patch) | |
| tree | f0f2b438c85316314873ac484acf8f01996416cc /include/JSystem/J3DGraphBase | |
| parent | 282de23ae645a4592acfedb2108de5c1ec03a16b (diff) | |
J3DUClipper halfway
Diffstat (limited to 'include/JSystem/J3DGraphBase')
| -rw-r--r-- | include/JSystem/J3DGraphBase/J3DShape.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/JSystem/J3DGraphBase/J3DShape.h b/include/JSystem/J3DGraphBase/J3DShape.h index 1346f0ae..944fe20c 100644 --- a/include/JSystem/J3DGraphBase/J3DShape.h +++ b/include/JSystem/J3DGraphBase/J3DShape.h @@ -53,7 +53,7 @@ class J3DVertexData; class J3DDrawMtxData; enum J3DShpFlag { - J3DShpFlag_Visible = 0x0001, + J3DShpFlag_Hide = 0x0001, J3DShpFlag_SkinPosCpu = 0x0004, J3DShpFlag_SkinNrmCpu = 0x0008, J3DShpFlag_Hidden = 0x0010, @@ -95,8 +95,8 @@ public: void setVertexDataPointer(J3DVertexData* pVtxData) { mVertexData = pVtxData; } void* getVcdVatCmd() const { return mVcdVatCmd; } void setVcdVatCmd(void* pVatCmd) { mVcdVatCmd = (u8*)pVatCmd; } - void show() { offFlag(J3DShpFlag_Visible); } - void hide() { onFlag(J3DShpFlag_Visible); } + void show() { offFlag(J3DShpFlag_Hide); } + void hide() { onFlag(J3DShpFlag_Hide); } void setCurrentViewNoPtr(u32* pViewNoPtr) { mCurrentViewNo = pViewNoPtr; } void setCurrentMtx(J3DCurrentMtx& mtx) { mCurrentMtx = mtx; } void setScaleFlagArray(u8* pScaleFlagArray) { mScaleFlagArray = pScaleFlagArray; } |
