diff options
author | Marek Olšák <[email protected]> | 2010-04-18 06:32:10 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2010-04-18 16:09:21 +0200 |
commit | 7a1b5c937fa32968a04a11649e456a1ef8c5b442 (patch) | |
tree | 9888ba323d55000d51cbcbb8a27c0bfeafb113d1 /src/gallium/drivers/r300/r300_texture.c | |
parent | bc8fa67926e8e094cd05bf7f1f690cf24e903e06 (diff) |
r300g: do not tell st that a buffer is referenced by hw
It saves a few libdrm calls and unnecessary flushes.
Diffstat (limited to 'src/gallium/drivers/r300/r300_texture.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_texture.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_texture.c b/src/gallium/drivers/r300/r300_texture.c index a4a3f2166f8..e795c8df0bb 100644 --- a/src/gallium/drivers/r300/r300_texture.c +++ b/src/gallium/drivers/r300/r300_texture.c @@ -880,7 +880,7 @@ static unsigned r300_texture_is_referenced(struct pipe_context *context, struct r300_context *r300 = r300_context(context); struct r300_texture *rtex = (struct r300_texture *)texture; - if (r300->rws->is_buffer_referenced(r300->rws, rtex->buffer)) + if (r300->rws->is_buffer_referenced(r300->rws, rtex->buffer, R300_REF_CS)) return PIPE_REFERENCED_FOR_READ | PIPE_REFERENCED_FOR_WRITE; return PIPE_UNREFERENCED; |