diff options
author | Marek Olšák <[email protected]> | 2010-05-26 01:41:22 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2010-05-26 01:41:32 +0200 |
commit | e6a8513a86f43d9b339a10c72dcb8fb88ffbb2aa (patch) | |
tree | 7e1f72f80769ff1956492b80f6a18c32e1508efd /src/gallium/drivers/r300/r300_context.c | |
parent | 2c072c8f72647a3b32e9855f7635b37ba399f5be (diff) |
r300g: more efficient finish + fix comments
Diffstat (limited to 'src/gallium/drivers/r300/r300_context.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_context.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/gallium/drivers/r300/r300_context.c b/src/gallium/drivers/r300/r300_context.c index 4721b7d5dc9..85e45d8647d 100644 --- a/src/gallium/drivers/r300/r300_context.c +++ b/src/gallium/drivers/r300/r300_context.c @@ -253,11 +253,12 @@ void r300_finish(struct r300_context *r300) if (fb->cbufs[i]->texture) { r300->rws->buffer_wait(r300->rws, r300_texture(fb->cbufs[i]->texture)->buffer); + return; } - if (fb->zsbuf) { - r300->rws->buffer_wait(r300->rws, - r300_texture(fb->zsbuf->texture)->buffer); - } + } + if (fb->zsbuf && fb->zsbuf->texture) { + r300->rws->buffer_wait(r300->rws, + r300_texture(fb->zsbuf->texture)->buffer); } } } |