diff options
author | Dave Airlie <[email protected]> | 2012-03-24 13:34:45 +0000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2012-04-13 17:19:02 +0100 |
commit | 0d29fb017bce0968240ae875af4b3702c2cd46ef (patch) | |
tree | 403a7ceac951bd8a3732766e6aac3d27d676eb16 /src/gallium/drivers/r600 | |
parent | 1256a5dcc86014d48bdc6fd10ea5a2fa11241667 (diff) |
gallium: rename DUAL_SOURCE_BLEND cap to MAX_DUAL_SOURCE_RENDER_TARGETS
Though I don't think we'll ever expose > 1.
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600')
-rw-r--r-- | src/gallium/drivers/r600/r600_pipe.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.c b/src/gallium/drivers/r600/r600_pipe.c index 7c40e506fb7..49c79f16ffa 100644 --- a/src/gallium/drivers/r600/r600_pipe.c +++ b/src/gallium/drivers/r600/r600_pipe.c @@ -380,7 +380,6 @@ static int r600_get_param(struct pipe_screen* pscreen, enum pipe_cap param) /* Supported features (boolean caps). */ case PIPE_CAP_NPOT_TEXTURES: case PIPE_CAP_TWO_SIDED_STENCIL: - case PIPE_CAP_DUAL_SOURCE_BLEND: case PIPE_CAP_ANISOTROPIC_FILTER: case PIPE_CAP_POINT_SPRITE: case PIPE_CAP_OCCLUSION_QUERY: @@ -465,6 +464,9 @@ static int r600_get_param(struct pipe_screen* pscreen, enum pipe_cap param) case PIPE_CAP_MAX_TEXEL_OFFSET: return 7; + + case PIPE_CAP_MAX_DUAL_SOURCE_RENDER_TARGETS: + return 0; } return 0; } |