diff options
author | Brian Paul <[email protected]> | 2009-12-29 22:56:32 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-12-29 22:56:32 -0700 |
commit | 81c72a1dabe72ebe6a875bd048d2d7a676716cbf (patch) | |
tree | f4a7ccf1842bf96231e1727fe2cd712744aa9ffa /src/mesa/main/api_exec.c | |
parent | 285d3f9ed84343b91e501d870a9ef6c61d9cc8f4 (diff) |
mesa: plug in GL_EXT_draw_buffers2 functions
Diffstat (limited to 'src/mesa/main/api_exec.c')
-rw-r--r-- | src/mesa/main/api_exec.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mesa/main/api_exec.c b/src/mesa/main/api_exec.c index 1559984f43a..6c3c98994aa 100644 --- a/src/mesa/main/api_exec.c +++ b/src/mesa/main/api_exec.c @@ -746,4 +746,12 @@ _mesa_init_exec_table(struct _glapi_table *exec) /* GL_ARB_vertex_array_object */ SET_BindVertexArray(exec, _mesa_BindVertexArray); SET_GenVertexArrays(exec, _mesa_GenVertexArrays); + + /* GL_EXT_draw_buffers2 */ + SET_ColorMaskIndexedEXT(exec, _mesa_ColorMaskIndexed); + SET_GetBooleanIndexedvEXT(exec, _mesa_GetBooleanIndexedv); + SET_GetIntegerIndexedvEXT(exec, _mesa_GetIntegerIndexedv); + SET_EnableIndexedEXT(exec, _mesa_EnableIndexed); + SET_DisableIndexedEXT(exec, _mesa_DisableIndexed); + SET_IsEnabledIndexedEXT(exec, _mesa_IsEnabledIndexed); } |