diff options
-rw-r--r-- | src/libjin/3rdparty/ogl/OpenGL.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/libjin/3rdparty/ogl/OpenGL.h b/src/libjin/3rdparty/ogl/OpenGL.h index 33b14d2..3984b49 100644 --- a/src/libjin/3rdparty/ogl/OpenGL.h +++ b/src/libjin/3rdparty/ogl/OpenGL.h @@ -45,15 +45,6 @@ namespace ogl2d void texImage(GLint internalformat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels = NULL); void texSubImage(GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels); void activeTexUnit(unsigned int unit = 0); - inline void vertexPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) - { - glVertexPointer(size, type, stride, pointer); - } - - inline void texCoordPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) - { - glTexCoordPointer(size, type, stride, pointer); - } inline void drawArrays(GLenum mode, GLint first, GLsizei count) { |