From: Marek Olšák Date: Fri, 9 Jun 2017 18:55:01 +0000 (+0200) Subject: st/mesa: don't update MSAA states for GL_FRAMEBUFFER_SRGB X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=61dc2c964eb1728706ef885ed7ebbdaf6367eb30;p=mesa.git st/mesa: don't update MSAA states for GL_FRAMEBUFFER_SRGB Reviewed-by: Nicolai Hähnle --- diff --git a/src/mesa/state_tracker/st_context.c b/src/mesa/state_tracker/st_context.c index 80811f6cf43..a0bd9ea7e38 100644 --- a/src/mesa/state_tracker/st_context.c +++ b/src/mesa/state_tracker/st_context.c @@ -520,7 +520,7 @@ static void st_init_driver_flags(struct st_context *st) f->NewShaderStorageBuffer = ST_NEW_STORAGE_BUFFER; f->NewImageUnits = ST_NEW_IMAGE_UNITS; f->NewWindowRectangles = ST_NEW_WINDOW_RECTANGLES; - f->NewFramebufferSRGB = ST_NEW_FRAMEBUFFER; + f->NewFramebufferSRGB = ST_NEW_FB_STATE; f->NewScissorRect = ST_NEW_SCISSOR; f->NewScissorTest = ST_NEW_SCISSOR | ST_NEW_RASTERIZER; }