diff options
author | Marek Olšák <[email protected]> | 2010-12-27 22:20:58 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2011-01-06 16:51:54 +0100 |
commit | 31afa7616e3c11e9874f3297ac66ebdd50a67186 (patch) | |
tree | 0ad99ee0645556ba157031d00a5db1cbab65347e /src/gallium/drivers/r300/r300_flush.c | |
parent | 45b51a9e7021c004c754e1903afeb15fd885109e (diff) |
r300g: skip buffer validation of upload buffers when appropriate
because the upload buffers are reused for subsequent draw operations.
Diffstat (limited to 'src/gallium/drivers/r300/r300_flush.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_flush.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_flush.c b/src/gallium/drivers/r300/r300_flush.c index 451fe525b40..7a26a86a912 100644 --- a/src/gallium/drivers/r300/r300_flush.c +++ b/src/gallium/drivers/r300/r300_flush.c @@ -70,6 +70,8 @@ static void r300_flush(struct pipe_context* pipe, } r300->validate_buffers = TRUE; + r300->upload_vb_validated = FALSE; + r300->upload_ib_validated = FALSE; } /* reset flushed query */ |