diff options
author | Eric Anholt <[email protected]> | 2009-08-04 00:26:42 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2009-09-04 14:20:09 -0700 |
commit | 0612ad4f19ecde4963e55551bc316610f97282ae (patch) | |
tree | e482fbf7f92e96b0abd3b3ae53168caff5a34bf7 /src | |
parent | a47858e45efd95d798468cfff34616c0de200032 (diff) |
i965: Don't set the complete field when there is more VUE yet to come.
This should help with things like lightsmark, but I don't have a testcase
for this commit.
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_vs_emit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vs_emit.c b/src/mesa/drivers/dri/i965/brw_vs_emit.c index 108e19cdbcf..584fdbdfc37 100644 --- a/src/mesa/drivers/dri/i965/brw_vs_emit.c +++ b/src/mesa/drivers/dri/i965/brw_vs_emit.c @@ -1208,7 +1208,7 @@ static void emit_vertex_write( struct brw_vs_compile *c) MIN2(c->nr_outputs + 1 + len_vertext_header, (BRW_MAX_MRF-1)), /* msg len */ 0, /* response len */ eot, /* eot */ - 1, /* writes complete */ + eot, /* writes complete */ 0, /* urb destination offset */ BRW_URB_SWIZZLE_INTERLEAVE); |