summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2012-04-23 09:46:15 -0700
committerEric Anholt <[email protected]>2012-05-04 14:00:32 -0700
commitfcd57280ae687d6b7c11cb8ac8fb8cc4f01a646d (patch)
treef219377268ba7563cf1ea53d720180a650d320f5 /src
parentb7406404aba1817d5a87714f97a108a755943452 (diff)
i965: Add a comment about the state flag for sRGBEnabled.
I thought this might be _NEW_COLOR, but it isn't.
Diffstat (limited to 'src')
-rw-r--r--src/mesa/drivers/dri/i965/brw_wm_surface_state.c7
-rw-r--r--src/mesa/drivers/dri/i965/gen7_wm_surface_state.c7
2 files changed, 10 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_wm_surface_state.c b/src/mesa/drivers/dri/i965/brw_wm_surface_state.c
index 8983195d7d0..0bb9414ed58 100644
--- a/src/mesa/drivers/dri/i965/brw_wm_surface_state.c
+++ b/src/mesa/drivers/dri/i965/brw_wm_surface_state.c
@@ -961,8 +961,11 @@ brw_update_renderbuffer_surface(struct brw_context *brw,
switch (rb_format) {
case MESA_FORMAT_SARGB8:
- /* without GL_EXT_framebuffer_sRGB we shouldn't bind sRGB
- surfaces to the blend/update as sRGB */
+ /* _NEW_BUFFERS
+ *
+ * Without GL_EXT_framebuffer_sRGB we shouldn't bind sRGB surfaces to the
+ * blend/update as sRGB.
+ */
if (ctx->Color.sRGBEnabled)
format = brw_format_for_mesa_format(rb_format);
else
diff --git a/src/mesa/drivers/dri/i965/gen7_wm_surface_state.c b/src/mesa/drivers/dri/i965/gen7_wm_surface_state.c
index cbccd2b852d..8f62c040b6a 100644
--- a/src/mesa/drivers/dri/i965/gen7_wm_surface_state.c
+++ b/src/mesa/drivers/dri/i965/gen7_wm_surface_state.c
@@ -289,8 +289,11 @@ gen7_update_renderbuffer_surface(struct brw_context *brw,
switch (rb_format) {
case MESA_FORMAT_SARGB8:
- /* without GL_EXT_framebuffer_sRGB we shouldn't bind sRGB
- surfaces to the blend/update as sRGB */
+ /* _NEW_BUFFERS
+ *
+ * Without GL_EXT_framebuffer_sRGB we shouldn't bind sRGB surfaces to the
+ * blend/update as sRGB.
+ */
if (ctx->Color.sRGBEnabled)
surf->ss0.surface_format = brw_format_for_mesa_format(rb_format);
else