diff options
author | Marek Olšák <[email protected]> | 2014-08-23 11:19:29 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2014-08-25 13:12:24 +0200 |
commit | 83503f9e68c5b2162682ed5b8691484a6d67aaea (patch) | |
tree | b2f9a162ccc6ab0eec9cb7f6efc40a861482a3b5 /src/gallium | |
parent | 770719eb821f96688c7efa12dc42805590f984ef (diff) |
radeonsi: handle PIPE_BIND_BLENDABLE
Reviewed-by: Michel Dänzer <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_state.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/si_state.c b/src/gallium/drivers/radeonsi/si_state.c index 571c487ed50..6fcb14b6e94 100644 --- a/src/gallium/drivers/radeonsi/si_state.c +++ b/src/gallium/drivers/radeonsi/si_state.c @@ -1532,13 +1532,17 @@ boolean si_is_format_supported(struct pipe_screen *screen, if ((usage & (PIPE_BIND_RENDER_TARGET | PIPE_BIND_DISPLAY_TARGET | PIPE_BIND_SCANOUT | - PIPE_BIND_SHARED)) && + PIPE_BIND_SHARED | + PIPE_BIND_BLENDABLE)) && si_is_colorbuffer_format_supported(format)) { retval |= usage & (PIPE_BIND_RENDER_TARGET | PIPE_BIND_DISPLAY_TARGET | PIPE_BIND_SCANOUT | PIPE_BIND_SHARED); + if (!util_format_is_pure_integer(format) && + !util_format_is_depth_or_stencil(format)) + retval |= usage & PIPE_BIND_BLENDABLE; } if ((usage & PIPE_BIND_DEPTH_STENCIL) && |