llvmpipe: remove weird clamping for format support with sample counts

this breaks u_blitter

Reviewed-by: Dave Airlie <airlied@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17705>
This commit is contained in:
Mike Blumenkrantz 2022-02-22 12:28:10 -05:00 committed by Marge Bot
parent 725cdfb0ad
commit 8563a95bd7
1 changed files with 0 additions and 3 deletions

View File

@ -682,9 +682,6 @@ llvmpipe_is_format_supported( struct pipe_screen *_screen,
if (sample_count != 0 && sample_count != 1 && sample_count != 4)
return false;
if (MAX2(1, sample_count) != MAX2(1, storage_sample_count))
return false;
if (bind & (PIPE_BIND_RENDER_TARGET | PIPE_BIND_SHADER_IMAGE)) {
if (format_desc->colorspace == UTIL_FORMAT_COLORSPACE_SRGB) {
/* this is a lie actually other formats COULD exist where we would fail */