diff options
author | Aapo Tahkola <aet@rasterburn.org> | 2006-01-27 14:09:05 +0000 |
---|---|---|
committer | Aapo Tahkola <aet@rasterburn.org> | 2006-01-27 14:09:05 +0000 |
commit | 58e4aa0ec9e8a7ab6b65af19102ed8bbcb0e1375 (patch) | |
tree | f59556f396be7ee6487d4834258b10b5eaf6c99f /src/mesa/drivers | |
parent | 0fcfa1c5b000f239cee1849a17f572ef5098cd31 (diff) |
missing link in the fallback chain
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/r300/r300_render.c | 5 |
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; |