diff options
author | Brian Paul <[email protected]> | 2004-10-02 16:39:09 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-10-02 16:39:09 +0000 |
commit | 53f82c5aadbb15585754bfacf3237093eccdb2ce (patch) | |
tree | 93c013f62d99caf8581c774f768cb7f365350095 /src/mesa/main/state.c | |
parent | 289ffee2a017308a9a97689662293613dc62d9e9 (diff) |
added support for GL_ARB_draw_buffers
Diffstat (limited to 'src/mesa/main/state.c')
-rw-r--r-- | src/mesa/main/state.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/state.c b/src/mesa/main/state.c index 21e07e70d1e..449e4631e77 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; } /*@}*/ |