summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2010-03-22 09:04:25 -0700
committerEric Anholt <eric@anholt.net>2010-03-22 15:04:47 -0700
commit10069916c71d55ddaeca793f5dade203a8b42da5 (patch)
tree89d22441fe3eaf4b820caf9424e841d9080accc4
parent7319b19fc94c3b49d19b8bf9ce52dc17db3ac6f3 (diff)
i965: Enable normal clipping on SNB.
Rejecting all doesn't seem to be helping get the pipeline lit up.
-rw-r--r--src/mesa/drivers/dri/i965/gen6_clip_state.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/gen6_clip_state.c b/src/mesa/drivers/dri/i965/gen6_clip_state.c
index 06f8145e32..acc4b7f101 100644
--- a/src/mesa/drivers/dri/i965/gen6_clip_state.c
+++ b/src/mesa/drivers/dri/i965/gen6_clip_state.c
@@ -55,7 +55,7 @@ upload_clip_state(struct brw_context *brw)
OUT_BATCH(GEN6_CLIP_STATISTICS_ENABLE);
OUT_BATCH(GEN6_CLIP_ENABLE |
GEN6_CLIP_API_OGL |
- GEN6_CLIP_MODE_REJECT_ALL | /* XXX: debug: get VS working */
+ GEN6_CLIP_MODE_NORMAL |
GEN6_CLIP_XY_TEST |
depth_clamp |
provoking);