projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5613078
)
mesa: plug in GL_ARB_draw_buffers_blend functions
author
Brian Paul
<brianp@vmware.com>
Wed, 12 Jan 2011 03:56:01 +0000
(20:56 -0700)
committer
Brian Paul
<brianp@vmware.com>
Sun, 16 Jan 2011 01:35:45 +0000
(18:35 -0700)
src/mesa/main/api_exec.c
patch
|
blob
|
history
diff --git
a/src/mesa/main/api_exec.c
b/src/mesa/main/api_exec.c
index 2f88946fbb0e6a55db1026ae2c16e4e7a4c8f1dc..546cdd6198749abbe5c78a75fa85e51dd627fbfe 100644
(file)
--- 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;
}