From: Eric Anholt Date: Mon, 22 Mar 2010 16:04:25 +0000 (-0700) Subject: i965: Enable normal clipping on SNB. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=10069916c71d55ddaeca793f5dade203a8b42da5;p=mesa.git i965: Enable normal clipping on SNB. Rejecting all doesn't seem to be helping get the pipeline lit up. --- 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);