aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa
diff options
context:
space:
mode:
authorAnuj Phogat <[email protected]>2012-08-29 12:22:11 -0700
committerAnuj Phogat <[email protected]>2012-08-30 11:10:50 -0700
commitf8a8f069ee2dae35470c6e2a681e5e110044e6fe (patch)
tree8e83cf793b843683decaab6b081df20b0e8ece5d /src/mesa
parentc2e9dd0276464ed61d48d3d80b9be8228767dfe2 (diff)
i965/msaa: flag _NEW_MULTISAMPLE in the brw_tracked_state
This is required to get the program recompiled when SampleAlphaToCoverage is enabled. Reviewed-by: Paul Berry <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/drivers/dri/i965/brw_wm.c3
-rw-r--r--src/mesa/drivers/dri/i965/brw_wm.h2
2 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_wm.c b/src/mesa/drivers/dri/i965/brw_wm.c
index 817320b8b8f..7ba13375a69 100644
--- a/src/mesa/drivers/dri/i965/brw_wm.c
+++ b/src/mesa/drivers/dri/i965/brw_wm.c
@@ -685,7 +685,8 @@ const struct brw_tracked_state brw_wm_prog = {
_NEW_LIGHT |
_NEW_FRAG_CLAMP |
_NEW_BUFFERS |
- _NEW_TEXTURE),
+ _NEW_TEXTURE |
+ _NEW_MULTISAMPLE),
.brw = (BRW_NEW_FRAGMENT_PROGRAM |
BRW_NEW_WM_INPUT_DIMENSIONS |
BRW_NEW_REDUCED_PRIMITIVE),
diff --git a/src/mesa/drivers/dri/i965/brw_wm.h b/src/mesa/drivers/dri/i965/brw_wm.h
index 5e4af2781ea..29384499099 100644
--- a/src/mesa/drivers/dri/i965/brw_wm.h
+++ b/src/mesa/drivers/dri/i965/brw_wm.h
@@ -64,7 +64,7 @@ struct brw_wm_prog_key {
GLuint stats_wm:1;
GLuint flat_shade:1;
GLuint nr_color_regions:5;
- GLuint sample_alpha_to_coverage:1; /* _NEW_MULTISAMPLE */
+ GLuint sample_alpha_to_coverage:1;
GLuint render_to_fbo:1;
GLuint clamp_fragment_color:1;
GLuint line_aa:2;