From: Antia Puentes Date: Sat, 19 Dec 2015 18:10:51 +0000 (+0100) Subject: mesa/formatquery: Added COLOR_ENCODING query. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e88cbb7a51051da66bf142515bc028559f999a64;p=mesa.git mesa/formatquery: Added COLOR_ENCODING query. From the ARB_internalformat_query2 specification: "- COLOR_ENCODING: The color encoding for the resource is returned in . Possible values for color buffers are LINEAR or SRGB, for linear or sRGB-encoded color components, respectively. For non-color formats (such as depth or stencil), or for unsupported resources, the value NONE is returned." Reviewed-by: Dave Airlie --- diff --git a/src/mesa/main/formatquery.c b/src/mesa/main/formatquery.c index aeed46f7259..bd69ea8f677 100644 --- a/src/mesa/main/formatquery.c +++ b/src/mesa/main/formatquery.c @@ -1099,7 +1099,13 @@ _mesa_GetInternalformativ(GLenum target, GLenum internalformat, GLenum pname, break; case GL_COLOR_ENCODING: - /* @TODO */ + if (!_mesa_is_color_format(internalformat)) + goto end; + + if (_mesa_is_srgb_format(internalformat)) + buffer[0] = GL_SRGB; + else + buffer[0] = GL_LINEAR; break; case GL_SRGB_READ: