diff options
author | Eric Anholt <[email protected]> | 2010-03-22 09:04:25 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-03-22 15:04:47 -0700 |
commit | 10069916c71d55ddaeca793f5dade203a8b42da5 (patch) | |
tree | 89d22441fe3eaf4b820caf9424e841d9080accc4 /src/mesa/drivers | |
parent | 7319b19fc94c3b49d19b8bf9ce52dc17db3ac6f3 (diff) |
i965: Enable normal clipping on SNB.
Rejecting all doesn't seem to be helping get the pipeline lit up.
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/i965/gen6_clip_state.c | 2 |
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 06f8145e32d..acc4b7f1019 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); |