summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers
diff options
context:
space:
mode:
authorDave Airlie <[email protected]>2012-04-21 17:46:35 +0100
committerDave Airlie <[email protected]>2012-04-21 17:46:35 +0100
commit47d22e56de4738f792bb9a86da23435744d53f00 (patch)
tree731602eb3a0c6f4aaf17234102d0fccb8b535fa4 /src/gallium/drivers
parent7745cf2be4abfbac0a5f7981d7c3dd2f4d0cbcbe (diff)
r600g: enable dual src blending on r600 cards
tested on my rv610 and it passes the tests with no hangs. Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r--src/gallium/drivers/r600/r600_pipe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.c b/src/gallium/drivers/r600/r600_pipe.c
index c212f007034..1f4268ba577 100644
--- a/src/gallium/drivers/r600/r600_pipe.c
+++ b/src/gallium/drivers/r600/r600_pipe.c
@@ -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 0;
+ return (family < CHIP_RV770) ? 1 : 0;
}
return 0;
}