mesa: remove ctx->Const.sRGBCapable
It always had the same value as ctx->Extensions.EXT_framebuffer_sRGB. Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
@@ -697,7 +697,6 @@ intelInitContext(struct intel_context *intel,
|
||||
_mesa_init_point(ctx);
|
||||
|
||||
if (intel->gen >= 4) {
|
||||
ctx->Const.sRGBCapable = true;
|
||||
if (MAX_WIDTH > 8192)
|
||||
ctx->Const.MaxRenderbufferSize = 8192;
|
||||
} else {
|
||||
|
@@ -2405,7 +2405,7 @@ _mesa_GetFramebufferAttachmentParameterivEXT(GLenum target, GLenum attachment,
|
||||
"glGetFramebufferAttachmentParameterivEXT(pname)");
|
||||
}
|
||||
else {
|
||||
if (ctx->Extensions.EXT_framebuffer_sRGB && ctx->Const.sRGBCapable) {
|
||||
if (ctx->Extensions.EXT_framebuffer_sRGB) {
|
||||
*params = _mesa_get_format_color_encoding(att->Renderbuffer->Format);
|
||||
}
|
||||
else {
|
||||
|
@@ -527,7 +527,7 @@ _mesa_update_framebuffer_visual(struct gl_context *ctx,
|
||||
fb->Visual.samples = rb->NumSamples;
|
||||
fb->Visual.sampleBuffers = rb->NumSamples > 0 ? 1 : 0;
|
||||
if (_mesa_get_format_color_encoding(fmt) == GL_SRGB)
|
||||
fb->Visual.sRGBCapable = ctx->Const.sRGBCapable;
|
||||
fb->Visual.sRGBCapable = ctx->Extensions.EXT_framebuffer_sRGB;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@@ -2808,9 +2808,6 @@ struct gl_constants
|
||||
/** GL_EXT_gpu_shader4 */
|
||||
GLint MinProgramTexelOffset, MaxProgramTexelOffset;
|
||||
|
||||
/* GL_EXT_framebuffer_sRGB */
|
||||
GLboolean sRGBCapable; /* can enable sRGB blend/update on FBOs */
|
||||
|
||||
/* GL_ARB_robustness */
|
||||
GLenum ResetStrategy;
|
||||
|
||||
|
@@ -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);
|
||||
|
@@ -425,7 +425,6 @@ void st_init_extensions(struct st_context *st)
|
||||
PIPE_TEXTURE_2D, 0,
|
||||
PIPE_BIND_RENDER_TARGET)) {
|
||||
ctx->Extensions.EXT_framebuffer_sRGB = GL_TRUE;
|
||||
ctx->Const.sRGBCapable = GL_TRUE;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user