Module: Mesa Branch: main Commit: ccdea7bbebf87eb2cc187b6b23602dac6cc2d59b URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=ccdea7bbebf87eb2cc187b6b23602dac6cc2d59b
Author: Karol Herbst <[email protected]> Date: Sun Oct 15 15:37:36 2023 +0200 rusticl/format: disable all sRGB formats Fixes: 714e11fe046 ("rusticl/format: enable all trivial to support optional image formats") Signed-off-by: Karol Herbst <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25739> --- src/gallium/frontends/rusticl/core/format.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gallium/frontends/rusticl/core/format.rs b/src/gallium/frontends/rusticl/core/format.rs index 2a0ff2316fd..a4843068f84 100644 --- a/src/gallium/frontends/rusticl/core/format.rs +++ b/src/gallium/frontends/rusticl/core/format.rs @@ -176,8 +176,8 @@ cl_format_table!([ // (CL_RGBx, CL_UNORM_SHORT_555) => pipe_format::PIPE_FORMAT_R5G5B5X1_UNORM, // (CL_RGBx, CL_UNORM_INT_101010) => pipe_format::PIPE_FORMAT_R10G10B10X2_UNORM, - (CL_sRGB, CL_UNORM_INT8) => pipe_format::PIPE_FORMAT_R8G8B8_SRGB, -// broken on iris and radeonsi +// broken +// (CL_sRGB, CL_UNORM_INT8) => pipe_format::PIPE_FORMAT_R8G8B8_SRGB, // (CL_sRGBA, CL_UNORM_INT8) => pipe_format::PIPE_FORMAT_R8G8B8A8_SRGB, // (CL_sBGRA, CL_UNORM_INT8) => pipe_format::PIPE_FORMAT_B8G8R8A8_SRGB, // broken
