projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b1f8ef5
)
mesa: fix incorrect opcode in save_BlendFunci()
author
Brian Paul
<brianp@vmware.com>
Thu, 15 Oct 2015 14:43:02 +0000
(08:43 -0600)
committer
Brian Paul
<brianp@vmware.com>
Tue, 20 Oct 2015 18:52:40 +0000
(12:52 -0600)
Fixes assertion failure with new piglit
arb_draw_buffers_blend-state_set_get test.
Cc: mesa-stable@lists.freedesktop.org
Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
src/mesa/main/dlist.c
patch
|
blob
|
history
diff --git
a/src/mesa/main/dlist.c
b/src/mesa/main/dlist.c
index fdb839c2c44fe4e7e72c3494ef0308233fac7a8f..2b65b2ea94933c007668201b7d33ed82e1c2dd83 100644
(file)
--- a/
src/mesa/main/dlist.c
+++ b/
src/mesa/main/dlist.c
@@
-1400,7
+1400,7
@@
save_BlendFunci(GLuint buf, GLenum sfactor, GLenum dfactor)
GET_CURRENT_CONTEXT(ctx);
Node *n;
ASSERT_OUTSIDE_SAVE_BEGIN_END_AND_FLUSH(ctx);
- n = alloc_instruction(ctx, OPCODE_BLEND_FUNC_
SEPARATE_
I, 3);
+ n = alloc_instruction(ctx, OPCODE_BLEND_FUNC_I, 3);
if (n) {
n[1].ui = buf;
n[2].e = sfactor;