i965: Fix fallback on stencil drawing to fbo when the visual lacks stencil.
authorEric Anholt <eric@anholt.net>
Tue, 17 Feb 2009 18:53:11 +0000 (10:53 -0800)
committerEric Anholt <eric@anholt.net>
Tue, 17 Feb 2009 19:30:09 +0000 (11:30 -0800)
Noticed this with the fbotexture demo.

src/mesa/drivers/dri/i965/brw_fallback.c

index e63098f..5f4f2d5 100644 (file)
@@ -75,8 +75,8 @@ static GLboolean do_check_fallback(struct brw_context *brw)
    
    /* _NEW_STENCIL 
     */
-   if (ctx->Stencil.Enabled && 
-       !brw->intel.hw_stencil) {
+   if (ctx->Stencil.Enabled &&
+       (ctx->DrawBuffer->Name == 0 && !brw->intel.hw_stencil)) {
       DBG("FALLBACK: stencil\n");
       return GL_TRUE;
    }