summaryrefslogtreecommitdiff
path: root/src/mesa/main/state.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/main/state.c')
-rw-r--r--src/mesa/main/state.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/state.c b/src/mesa/main/state.c
index 21e07e70d1..449e4631e7 100644
--- a/src/mesa/main/state.c
+++ b/src/mesa/main/state.c
@@ -724,6 +724,7 @@ _mesa_init_exec_table(struct _glapi_table *exec, GLuint tableSize)
exec->UnmapBufferARB = _mesa_UnmapBufferARB;
#endif
+ /* ARB 29. GL_ARB_occlusion_query */
#if FEATURE_ARB_occlusion_query
exec->GenQueriesARB = _mesa_GenQueriesARB;
exec->DeleteQueriesARB = _mesa_DeleteQueriesARB;
@@ -734,6 +735,9 @@ _mesa_init_exec_table(struct _glapi_table *exec, GLuint tableSize)
exec->GetQueryObjectivARB = _mesa_GetQueryObjectivARB;
exec->GetQueryObjectuivARB = _mesa_GetQueryObjectuivARB;
#endif
+
+ /* ARB 37. GL_ARB_draw_buffers */
+ exec->DrawBuffersARB = _mesa_DrawBuffersARB;
}
/*@}*/