diff options
author | Corbin Simpson <[email protected]> | 2009-11-01 11:54:52 -0800 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-11-01 11:54:52 -0800 |
commit | 1f630fa0167ed799556a764178772c096a3ddeba (patch) | |
tree | 41bcdd3ea06bf82e5c613dc52e4fbc30104bc375 /src/gallium/drivers/r300/r300_emit.c | |
parent | 3d73852121f13832f6bc87918798ff96589d0349 (diff) |
r300g: Miscellania. Avoid draw segfaults, s/true/TRUE/, etc.
Cleared out my git stash.
Diffstat (limited to 'src/gallium/drivers/r300/r300_emit.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_emit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_emit.c b/src/gallium/drivers/r300/r300_emit.c index 5b03c1aa6c1..79972dbb49e 100644 --- a/src/gallium/drivers/r300/r300_emit.c +++ b/src/gallium/drivers/r300/r300_emit.c @@ -800,7 +800,7 @@ validate: for (i = 0; i < r300->texture_count; i++) { tex = r300->textures[i]; if (!tex) - continue; + continue; if (!r300->winsys->add_buffer(r300->winsys, tex->buffer, RADEON_GEM_DOMAIN_GTT | RADEON_GEM_DOMAIN_VRAM, 0)) { r300->context.flush(&r300->context, 0, NULL); |