From: Brian Paul Date: Mon, 27 Oct 2014 21:03:05 +0000 (-0600) Subject: st/mesa: use PIPE_BIND_DISPLAY_TARGET when checking for sRGB capability X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6ad1c1eec104fbedd20335f0ea4afcd5dba63203;p=mesa.git st/mesa: use PIPE_BIND_DISPLAY_TARGET when checking for sRGB capability When we're checking if the framebuffer is sRGB capable, call is_format_supported() with the PIPE_BIND_DISPLAY_TARGET flag. Reviewed-by: Charmaine Lee --- diff --git a/src/mesa/state_tracker/st_manager.c b/src/mesa/state_tracker/st_manager.c index df6de737fb6..606d67891c1 100644 --- a/src/mesa/state_tracker/st_manager.c +++ b/src/mesa/state_tracker/st_manager.c @@ -452,7 +452,8 @@ st_framebuffer_create(struct st_context *st, st_pipe_format_to_mesa_format(srgb_format) != MESA_FORMAT_NONE && screen->is_format_supported(screen, srgb_format, PIPE_TEXTURE_2D, stfbi->visual->samples, - PIPE_BIND_RENDER_TARGET)) + (PIPE_BIND_DISPLAY_TARGET | + PIPE_BIND_RENDER_TARGET))) mode.sRGBCapable = GL_TRUE; }