From 4a93f5bc7f1a4e4c965d74a3ff0902f30399fc7c Mon Sep 17 00:00:00 2001 From: PGGB Date: Wed, 24 Oct 2012 00:03:59 +0200 Subject: [PATCH] Add glDrawElementsBaseVertex --- basis/opengl/gl/gl.factor | 1 + basis/opengl/gl3/gl3.factor | 1 + 2 files changed, 2 insertions(+) diff --git a/basis/opengl/gl/gl.factor b/basis/opengl/gl/gl.factor index d1e510beec..34c57208ed 100644 --- a/basis/opengl/gl/gl.factor +++ b/basis/opengl/gl/gl.factor @@ -2256,6 +2256,7 @@ GL-FUNCTION: void glTexImage2DMultisample { } ( GLenum target, GLsizei samples, GL-FUNCTION: void glTexImage3DMultisample { } ( GLenum target, GLsizei samples, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations ) ; GL-FUNCTION: void glGetMultisamplefv { } ( GLenum pname, GLuint index, GLfloat* val ) ; GL-FUNCTION: void glSampleMaski { } ( GLuint index, GLbitfield mask ) ; +GL-FUNCTION: void glDrawElementsBaseVertex { glDrawElementsBaseVertexARB } ( GLenum mode, GLsizei count, GLenum type, GLvoid* indices, GLint basevertex ) ; ! OpenGL 3.3 diff --git a/basis/opengl/gl3/gl3.factor b/basis/opengl/gl3/gl3.factor index f2937f1c4d..1b99185ff8 100644 --- a/basis/opengl/gl3/gl3.factor +++ b/basis/opengl/gl3/gl3.factor @@ -1167,6 +1167,7 @@ ALIAS: glTexImage2DMultisample gl:glTexImage2DMultisample ALIAS: glTexImage3DMultisample gl:glTexImage3DMultisample ALIAS: glGetMultisamplefv gl:glGetMultisamplefv ALIAS: glSampleMaski gl:glSampleMaski +ALIAS: glDrawElementsBaseVertex gl:glDrawElementsBaseVertex ALIAS: glBindFragDataLocationIndexed gl:glBindFragDataLocationIndexed ALIAS: glGetFragDataIndex gl:glGetFragDataIndex ALIAS: glGenSamplers gl:glGenSamplers