r600g: disable dual-src hangs evergreen for some reason.
authorDave Airlie <airlied@redhat.com>
Sat, 14 Apr 2012 19:25:59 +0000 (20:25 +0100)
committerDave Airlie <airlied@redhat.com>
Sat, 14 Apr 2012 19:25:59 +0000 (20:25 +0100)
This did work previously, so I've broken something.

Signed-off-by: Dave Airlie <airlied@redhat.com>
src/gallium/drivers/r600/r600_pipe.c

index a185af2..49c79f1 100644 (file)
@@ -466,7 +466,7 @@ static int r600_get_param(struct pipe_screen* pscreen, enum pipe_cap param)
                return 7;
 
        case PIPE_CAP_MAX_DUAL_SOURCE_RENDER_TARGETS:
-               return 1;
+               return 0;
        }
        return 0;
 }