add initial examples, replacing the 'Demos/Demos3'. Will make it work cross-platform, OpenGL3/OpenGL2 and add more examples to it.
This commit is contained in:
21
examples/OpenGLWindow/GLPrimInternalData.h
Normal file
21
examples/OpenGLWindow/GLPrimInternalData.h
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef PRIM_INTERNAL_DATA
|
||||
#define PRIM_INTERNAL_DATA
|
||||
|
||||
#include "OpenGLInclude.h"
|
||||
|
||||
struct PrimInternalData
|
||||
{
|
||||
GLuint m_shaderProg;
|
||||
GLint m_viewmatUniform;
|
||||
GLint m_projMatUniform;
|
||||
GLint m_positionUniform;
|
||||
GLint m_colourAttribute;
|
||||
GLint m_positionAttribute;
|
||||
GLint m_textureAttribute;
|
||||
GLuint m_vertexBuffer;
|
||||
GLuint m_vertexArrayObject;
|
||||
GLuint m_indexBuffer;
|
||||
GLuint m_texturehandle;
|
||||
};
|
||||
|
||||
#endif //PRIM_INTERNAL_DATA
|
||||
Reference in New Issue
Block a user