summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/api_exec.c
diff options
context:
space:
mode:
authorIan Romanick <[email protected]>2012-08-08 13:37:45 -0700
committerIan Romanick <[email protected]>2012-08-29 15:09:36 -0700
commitfc2219e4482c4b940ea32dbe8ad220a22c300f3d (patch)
treed29f33956baf99766ee13de929af4542e48cc252 /src/mesa/main/api_exec.c
parent917f68071bcba705970f474fae2cb56cfffa20f5 (diff)
mesa: glGetVertexAttribPointerv is part of core profile and ES2
Signed-off-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/main/api_exec.c')
-rw-r--r--src/mesa/main/api_exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/api_exec.c b/src/mesa/main/api_exec.c
index 6b1499f4f06..356b133d4a8 100644
--- a/src/mesa/main/api_exec.c
+++ b/src/mesa/main/api_exec.c
@@ -477,7 +477,6 @@ _mesa_create_exec_table(struct gl_context *ctx)
SET_GetVertexAttribdvNV(exec, _mesa_GetVertexAttribdvNV);
SET_GetVertexAttribfvNV(exec, _mesa_GetVertexAttribfvNV);
SET_GetVertexAttribivNV(exec, _mesa_GetVertexAttribivNV);
- SET_GetVertexAttribPointervNV(exec, _mesa_GetVertexAttribPointervNV);
SET_IsProgramNV(exec, _mesa_IsProgramARB);
SET_LoadProgramNV(exec, _mesa_LoadProgramNV);
SET_ProgramEnvParameter4dARB(exec, _mesa_ProgramEnvParameter4dARB); /* alias to ProgramParameter4dNV */
@@ -491,6 +490,7 @@ _mesa_create_exec_table(struct gl_context *ctx)
/* glVertexAttrib*NV functions handled in api_loopback.c */
}
#endif
+ SET_GetVertexAttribPointervNV(exec, _mesa_GetVertexAttribPointervNV);
/* 273. GL_APPLE_vertex_array_object */
if (ctx->API == API_OPENGL) {