diff options
author | Brian Paul <[email protected]> | 2011-01-11 20:56:01 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-01-15 18:35:45 -0700 |
commit | 7f48278edc70ad0841cbee2c46add7653b4fac15 (patch) | |
tree | b5b6fdc7ebee579d8dffda75ec805d11e5ac9b54 | |
parent | 561307844f0fb2bc5721731b9c01522e1d373f53 (diff) |
mesa: plug in GL_ARB_draw_buffers_blend functions
-rw-r--r-- | src/mesa/main/api_exec.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/main/api_exec.c b/src/mesa/main/api_exec.c index 2f88946fbb0..546cdd61987 100644 --- a/src/mesa/main/api_exec.c +++ b/src/mesa/main/api_exec.c @@ -714,6 +714,12 @@ _mesa_create_exec_table(void) /* GL_ARB_instanced_arrays */ SET_VertexAttribDivisorARB(exec, _mesa_VertexAttribDivisor); + /* GL_ARB_draw_buffer_blend */ + SET_BlendFunciARB(exec, _mesa_BlendFunci); + SET_BlendFuncSeparateiARB(exec, _mesa_BlendFuncSeparatei); + SET_BlendEquationiARB(exec, _mesa_BlendEquationi); + SET_BlendEquationSeparateiARB(exec, _mesa_BlendEquationSeparatei); + return exec; } |