diff options
author | Marek Olšák <maraeo@gmail.com> | 2010-12-27 16:15:24 +0100 |
---|---|---|
committer | Marek Olšák <maraeo@gmail.com> | 2010-12-28 04:40:05 +0100 |
commit | d9b84017e0000b4740bf3318f54a3a5e31858f4f (patch) | |
tree | a3fc78a33aafd05f03f7f38d249deae845280062 /src | |
parent | 689aca782216d2666486dea02206cbc9c4162e0d (diff) |
r300g: mark vertex arrays as dirty after a buffer_offset change
We shouldn't hit this bug in theory.
NOTE: This is a candidate for the 7.10 branch.
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/r300/r300_screen_buffer.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_screen_buffer.c b/src/gallium/drivers/r300/r300_screen_buffer.c index 565ead2171..93f9b4f59b 100644 --- a/src/gallium/drivers/r300/r300_screen_buffer.c +++ b/src/gallium/drivers/r300/r300_screen_buffer.c @@ -90,6 +90,7 @@ void r300_upload_user_buffers(struct r300_context *r300) &vb->buffer_offset, &vb->buffer); r300->validate_buffers = TRUE; + r300->aos_dirty = TRUE; } } } |