From: Marek Olšák Date: Sat, 7 Jul 2012 07:36:35 +0000 (+0200) Subject: r600g: enable dual src blending on r7xx X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9974e9ac5db9f1bfe601309b64e61901439dfd12;p=mesa.git r600g: enable dual src blending on r7xx No lockups here. --- diff --git a/src/gallium/drivers/r600/r600_pipe.c b/src/gallium/drivers/r600/r600_pipe.c index 435aa7715ba..c4df3a6f0fd 100644 --- a/src/gallium/drivers/r600/r600_pipe.c +++ b/src/gallium/drivers/r600/r600_pipe.c @@ -452,7 +452,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 (family < CHIP_RV770) ? 1 : 0; + return family < CHIP_CEDAR ? 1 : 0; } return 0; }