From: Alyssa Rosenzweig Date: Mon, 17 Jun 2019 23:01:24 +0000 (-0700) Subject: panfrost: Add sRGB render target flag X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=31a4ef847cee355053e76c147f409a42aaa83866;p=mesa.git panfrost: Add sRGB render target flag Signed-off-by: Alyssa Rosenzweig --- diff --git a/src/gallium/drivers/panfrost/include/panfrost-job.h b/src/gallium/drivers/panfrost/include/panfrost-job.h index 35bc4a5a31e..bcdffabff97 100644 --- a/src/gallium/drivers/panfrost/include/panfrost-job.h +++ b/src/gallium/drivers/panfrost/include/panfrost-job.h @@ -1409,6 +1409,7 @@ struct mali_single_framebuffer { /* Format bits for the render target flags */ #define MALI_MFBD_FORMAT_MSAA (1 << 1) +#define MALI_MFBD_FORMAT_SRGB (1 << 2) enum mali_mfbd_block_format { MALI_MFBD_BLOCK_TILED = 0x0, diff --git a/src/gallium/drivers/panfrost/pandecode/decode.c b/src/gallium/drivers/panfrost/pandecode/decode.c index 85915b8eb86..daa9d4736a6 100644 --- a/src/gallium/drivers/panfrost/pandecode/decode.c +++ b/src/gallium/drivers/panfrost/pandecode/decode.c @@ -208,6 +208,7 @@ static const struct pandecode_flag_info fb_fmt_flag_info[] = { #define FLAG_INFO(flag) { MALI_MFBD_FORMAT_##flag, "MALI_MFBD_FORMAT_" #flag } static const struct pandecode_flag_info mfbd_fmt_flag_info[] = { FLAG_INFO(MSAA), + FLAG_INFO(SRGB), {} }; #undef FLAG_INFO