summaryrefslogtreecommitdiff
path: root/common/pieceinf.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/pieceinf.h')
-rw-r--r--common/pieceinf.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/common/pieceinf.h b/common/pieceinf.h
index 56892c8..cb574c6 100644
--- a/common/pieceinf.h
+++ b/common/pieceinf.h
@@ -84,15 +84,10 @@ class PieceInfo
void ZoomExtents(float Fov, float Aspect, float* EyePos = NULL) const;
void RenderOnce(int nColor);
void RenderPiece(int nColor);
+ void RenderBox();
void WriteWavefront(FILE* file, unsigned char color, unsigned long* start);
// Implementation
- GLuint GetBoxDisplayList()
- {
- if (!m_nBoxList)
- CreateBoxDisplayList();
- return m_nBoxList;
- };
void LoadIndex(File& file);
void AddRef();
void DeRef();
@@ -118,11 +113,9 @@ public:
protected:
int m_nRef;
- GLuint m_nBoxList;
void LoadInformation();
void FreeInformation();
- void CreateBoxDisplayList();
};
#endif // _PIECEINF_H_