summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/gen6_clip_state.c
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2016-04-22 01:48:56 -0700
committerTopi Pohjolainen <topi.pohjolainen@intel.com>2016-04-23 07:09:39 +0300
commit6d5ce1b0433f4cbc5cd88b4bfeaf4cdcba6beda8 (patch)
tree45a830be515a1aec93b598d2eac9abf6a8e5b8cb /src/mesa/drivers/dri/i965/gen6_clip_state.c
parent65a5af6dd0550e93a5250582147689a1ddef9ffa (diff)
downloadexternal_mesa3d-6d5ce1b0433f4cbc5cd88b4bfeaf4cdcba6beda8.zip
external_mesa3d-6d5ce1b0433f4cbc5cd88b4bfeaf4cdcba6beda8.tar.gz
external_mesa3d-6d5ce1b0433f4cbc5cd88b4bfeaf4cdcba6beda8.tar.bz2
i965: Make all atoms to track BRW_NEW_BLORP by default
Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com
Diffstat (limited to 'src/mesa/drivers/dri/i965/gen6_clip_state.c')
-rw-r--r--src/mesa/drivers/dri/i965/gen6_clip_state.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/gen6_clip_state.c b/src/mesa/drivers/dri/i965/gen6_clip_state.c
index 004eceb..5ba3a80 100644
--- a/src/mesa/drivers/dri/i965/gen6_clip_state.c
+++ b/src/mesa/drivers/dri/i965/gen6_clip_state.c
@@ -195,7 +195,8 @@ const struct brw_tracked_state gen6_clip_state = {
.mesa = _NEW_BUFFERS |
_NEW_LIGHT |
_NEW_TRANSFORM,
- .brw = BRW_NEW_CONTEXT |
+ .brw = BRW_NEW_BLORP |
+ BRW_NEW_CONTEXT |
BRW_NEW_FS_PROG_DATA |
BRW_NEW_GEOMETRY_PROGRAM |
BRW_NEW_META_IN_PROGRESS |
@@ -211,7 +212,8 @@ const struct brw_tracked_state gen7_clip_state = {
_NEW_LIGHT |
_NEW_POLYGON |
_NEW_TRANSFORM,
- .brw = BRW_NEW_CONTEXT |
+ .brw = BRW_NEW_BLORP |
+ BRW_NEW_CONTEXT |
BRW_NEW_FS_PROG_DATA |
BRW_NEW_GEOMETRY_PROGRAM |
BRW_NEW_META_IN_PROGRESS |