This commit is contained in:
Erwin Coumans
2014-06-24 15:32:19 -07:00

View File

@@ -210,15 +210,18 @@ void SimpleOpenGL3App::drawText( const char* txt, int posX, int posY)
glDisable(GL_BLEND); glDisable(GL_BLEND);
} }
int SimpleOpenGL3App::registerCubeShape(float halfExtentsX,float halfExtentsY, float halfExtentsZ)
{ struct GfxVertex
struct GfxVertex
{ {
float x,y,z,w; float x,y,z,w;
float nx,ny,nz; float nx,ny,nz;
float u,v; float u,v;
}; };
int SimpleOpenGL3App::registerCubeShape(float halfExtentsX,float halfExtentsY, float halfExtentsZ)
{
int strideInBytes = 9*sizeof(float); int strideInBytes = 9*sizeof(float);
int numVertices = sizeof(cube_vertices)/strideInBytes; int numVertices = sizeof(cube_vertices)/strideInBytes;
int numIndices = sizeof(cube_indices)/sizeof(int); int numIndices = sizeof(cube_indices)/sizeof(int);