diff options
author | Marek Olšák <[email protected]> | 2012-01-24 23:39:31 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-01-25 12:35:37 +0100 |
commit | 69c8f468ba93dc2999d4fde8909f8051e910929a (patch) | |
tree | 79eef814e99c52af8c8f8bec7bf8a73a5997fcfc /src/mesa/state_tracker/st_cb_fbo.c | |
parent | 8ec05f06cba381ce757e18bc7c41f0bd33205926 (diff) |
mesa: remove ctx->Const.sRGBCapable
It always had the same value as ctx->Extensions.EXT_framebuffer_sRGB.
Reviewed-by: Ian Romanick <[email protected]>
Reviewed-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/mesa/state_tracker/st_cb_fbo.c')
-rw-r--r-- | src/mesa/state_tracker/st_cb_fbo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_cb_fbo.c b/src/mesa/state_tracker/st_cb_fbo.c index fefd93a4b3c..1cbc0d606bf 100644 --- a/src/mesa/state_tracker/st_cb_fbo.c +++ b/src/mesa/state_tracker/st_cb_fbo.c @@ -471,7 +471,7 @@ st_validate_attachment(struct gl_context *ctx, /* If the encoding is sRGB and sRGB rendering cannot be enabled, * check for linear format support instead. * Later when we create a surface, we change the format to a linear one. */ - if (!ctx->Const.sRGBCapable && + if (!ctx->Extensions.EXT_framebuffer_sRGB && _mesa_get_format_color_encoding(texFormat) == GL_SRGB) { const gl_format linearFormat = _mesa_get_srgb_format_linear(texFormat); format = st_mesa_format_to_pipe_format(linearFormat); |