summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2010-08-04 14:00:04 +0800
committerChia-I Wu <olv@lunarg.com>2010-08-04 14:03:05 +0800
commit5c2f01bbb076af8b8ae6e1803d95a9ae678c2d1c (patch)
tree164ac47cf4cea8281869c6f7592db4ba7d2fbc01 /src
parent09c8fa570e69272f65cb49840ec7c709820b1b2a (diff)
draw: Fix the edge flags of flatshade_first polygons.
This bug can be triggered by rendering polygons with glProvokingVertexEXT(GL_FIRST_VERTEX_CONVENTION_EXT); glPolygonMode(GL_FRONT_AND_BACK, GL_LINE);
Diffstat (limited to 'src')
-rw-r--r--src/gallium/auxiliary/draw/draw_pt_vcache_tmp.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/auxiliary/draw/draw_pt_vcache_tmp.h b/src/gallium/auxiliary/draw/draw_pt_vcache_tmp.h
index dac68ad439..a42162691b 100644
--- a/src/gallium/auxiliary/draw/draw_pt_vcache_tmp.h
+++ b/src/gallium/auxiliary/draw/draw_pt_vcache_tmp.h
@@ -146,10 +146,10 @@ static void FUNC( struct draw_pt_front_end *frontend,
if (flatfirst) {
flags = (DRAW_PIPE_RESET_STIPPLE |
- DRAW_PIPE_EDGE_FLAG_1 |
- DRAW_PIPE_EDGE_FLAG_2);
- edge_next = DRAW_PIPE_EDGE_FLAG_2;
- edge_finish = DRAW_PIPE_EDGE_FLAG_0;
+ DRAW_PIPE_EDGE_FLAG_0 |
+ DRAW_PIPE_EDGE_FLAG_1);
+ edge_next = DRAW_PIPE_EDGE_FLAG_1;
+ edge_finish = DRAW_PIPE_EDGE_FLAG_2;
}
else {
flags = (DRAW_PIPE_RESET_STIPPLE |