This commit is contained in:
Adam
2014-03-14 01:50:37 +01:00
parent 9a2bdf8c11
commit 72c06231ad
27 changed files with 1368 additions and 7 deletions
+29
View File
@@ -0,0 +1,29 @@
#ifndef Skybox_h__
#define Skybox_h__
#include <algorithm>
#include "OpenGL.h"
#include "logging.h"
#include "glerror.h"
#include "CubemapTexture.h"
class Skybox
{
public:
Skybox(CubemapTexture cubemap);
~Skybox();
void Draw();
private:
CubemapTexture m_Cubemap;
GLuint ibo;
GLuint vao;
float m_CubeVertices[3 * 8];
int m_CubeIndices[1];
};
#endif // Skybox_h__