From: Brian Paul Date: Sun, 16 Jan 2011 03:41:06 +0000 (-0700) Subject: mesa: add comment for _mesa_get_srgb_format_linear() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=aad7219f80e21739c521d58a6e32a14114ac0bb0;p=mesa.git mesa: add comment for _mesa_get_srgb_format_linear() --- diff --git a/src/mesa/main/formats.c b/src/mesa/main/formats.c index 3ccc40b9a79..b8fed182570 100644 --- a/src/mesa/main/formats.c +++ b/src/mesa/main/formats.c @@ -1090,6 +1090,11 @@ _mesa_get_format_color_encoding(gl_format format) } } + +/** + * For an sRGB format, return the corresponding linear color space format. + * For non-sRGB formats, return the format as-is. + */ gl_format _mesa_get_srgb_format_linear(gl_format format) {