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 <airlied@redhat.com>
This commit is contained in:
Dave Airlie 2012-04-21 17:46:35 +01:00
parent 7745cf2be4
commit 47d22e56de

View 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 0;
return (family < CHIP_RV770) ? 1 : 0;
}
return 0;
}