mesa: Remove unused _mesa_get_linear_format_srgb
authorAdam Jackson <ajax@redhat.com>
Thu, 16 Dec 2021 02:32:58 +0000 (21:32 -0500)
committerMarge Bot <emma+marge@anholt.net>
Tue, 4 Jan 2022 19:45:55 +0000 (19:45 +0000)
Reviewed-by: Emma Anholt <emma@anholt.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14220>

src/mesa/main/format_fallback.py
src/mesa/main/formats.h

index bc752c3..5f17407 100644 (file)
@@ -102,28 +102,6 @@ _mesa_get_srgb_format_linear(mesa_format format)
 }
 
 /**
- * For a linear format, return the corresponding sRGB color space format.
- * For an sRGB format, return the format as-is.
- * Assert-fails if the format is not sRGB and does not have an sRGB equivalent.
- */
-mesa_format
-_mesa_get_linear_format_srgb(mesa_format format)
-{
-   switch (format) {
-%for unorm, srgb in unorm_to_srgb_map:
-   case ${unorm}:
-      return ${srgb};
-%endfor
-%for unorm, srgb in unorm_to_srgb_map:
-   case ${srgb}:
-%endfor
-      return format;
-   default:
-      unreachable("Given format does not have an sRGB equivalent");
-   }
-}
-
-/**
  * For an intensity format, return the corresponding red format.  For other
  * formats, return the format as-is.
  */
index 2c5c03b..1813968 100644 (file)
@@ -723,9 +723,6 @@ extern mesa_format
 _mesa_get_srgb_format_linear(mesa_format format);
 
 extern mesa_format
-_mesa_get_linear_format_srgb(mesa_format format);
-
-extern mesa_format
 _mesa_get_intensity_format_red(mesa_format format);
 
 extern mesa_format