diff options
author | Brian <[email protected]> | 2007-08-20 10:23:28 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-08-20 10:23:28 -0600 |
commit | df1df82f1660996d09fa272e6129c194afde3ece (patch) | |
tree | a28e21bb697f637707ca95cdf20e09a8d3a94b9a /src/mesa/pipe/draw/draw_prim.c | |
parent | 8339ca7d1e9a3fe90f46e6e81f7ec8574d121072 (diff) | |
parent | 14327705fd53e984b74f8e9adb053df03fba7aff (diff) |
Merge branch 'softpipe_0_1_branch' of git+ssh://[email protected]/git/mesa/mesa into softpipe_0_1_branch
Diffstat (limited to 'src/mesa/pipe/draw/draw_prim.c')
-rw-r--r-- | src/mesa/pipe/draw/draw_prim.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mesa/pipe/draw/draw_prim.c b/src/mesa/pipe/draw/draw_prim.c index 7757dacf34f..95e71efd6db 100644 --- a/src/mesa/pipe/draw/draw_prim.c +++ b/src/mesa/pipe/draw/draw_prim.c @@ -258,8 +258,10 @@ static void do_quad( struct draw_context *draw, unsigned v2, unsigned v3 ) { - do_ef_triangle( draw, 1, ~(1<<0), v0, v1, v3 ); - do_ef_triangle( draw, 0, ~(1<<1), v1, v2, v3 ); + const unsigned omitEdge2 = ~(1 << 1); + const unsigned omitEdge3 = ~(1 << 2); + do_ef_triangle( draw, 1, omitEdge2, v0, v1, v3 ); + do_ef_triangle( draw, 0, omitEdge3, v1, v2, v3 ); } |