summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAapo Tahkola <aet@rasterburn.org>2006-01-27 14:09:05 +0000
committerAapo Tahkola <aet@rasterburn.org>2006-01-27 14:09:05 +0000
commit58e4aa0ec9e8a7ab6b65af19102ed8bbcb0e1375 (patch)
treef59556f396be7ee6487d4834258b10b5eaf6c99f /src
parent0fcfa1c5b000f239cee1849a17f572ef5098cd31 (diff)
missing link in the fallback chain
Diffstat (limited to 'src')
-rw-r--r--src/mesa/drivers/dri/r300/r300_render.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/r300/r300_render.c b/src/mesa/drivers/dri/r300/r300_render.c
index 1fa22f7649..f739b38651 100644
--- a/src/mesa/drivers/dri/r300/r300_render.c
+++ b/src/mesa/drivers/dri/r300/r300_render.c
@@ -856,6 +856,11 @@ static GLboolean r300_run_tcl_render(GLcontext *ctx,
if(hw_tcl_on == GL_FALSE)
return GL_TRUE;
+ if (r300Fallback(ctx)) {
+ hw_tcl_on = GL_FALSE;
+ return GL_TRUE;
+ }
+
for (i = 0; i < ctx->Const.MaxTextureUnits; i++)
if (ctx->Texture.Unit[i]._ReallyEnabled & TEXTURE_RECT_BIT) {
hw_tcl_on = GL_FALSE;