00001 00007 #ifndef _OPENGL_CUBEMAP_H_ 00008 #define _OPENGL_CUBEMAP_H_ 00009 00010 #include "../OpenGL/OpenGLObject.h" 00011 #include "../../Util/Log.h" 00012 00013 class Cubemap : public OpenGLObject { 00014 public: 00015 Cubemap(float size); 00016 virtual ~Cubemap(); 00017 00018 private: 00019 float *m_pBoxVertices; 00020 short *m_pBoxIndices; 00021 }; 00022 00023 #endif