mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 00:00:11 +01:00
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:
parent
7745cf2be4
commit
47d22e56de
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue