diff options
author | Dave Airlie <[email protected]> | 2012-03-24 13:36:59 +0000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2012-04-13 17:19:03 +0100 |
commit | 4b1c3b920ee921506948fc14a0b70c746a811c2f (patch) | |
tree | 47e8baa1135bca479ef817b0a15386e75bf21832 /src/gallium/drivers/softpipe/sp_screen.c | |
parent | c59d32d1ce9eee7bf0dcebfca1e69edbda90c22d (diff) |
softpipe: add dual source blending support
This adds support for a single dual source blending MRT to softpipe.
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_screen.c')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_screen.c b/src/gallium/drivers/softpipe/sp_screen.c index b1ab14228ef..25153afaf40 100644 --- a/src/gallium/drivers/softpipe/sp_screen.c +++ b/src/gallium/drivers/softpipe/sp_screen.c @@ -80,7 +80,7 @@ softpipe_get_param(struct pipe_screen *screen, enum pipe_cap param) case PIPE_CAP_MAX_RENDER_TARGETS: return PIPE_MAX_COLOR_BUFS; case PIPE_CAP_MAX_DUAL_SOURCE_RENDER_TARGETS: - return 0; + return 1; case PIPE_CAP_OCCLUSION_QUERY: return 1; case PIPE_CAP_TIMER_QUERY: |