From: Chia-I Wu Date: Wed, 10 Apr 2013 13:32:13 +0000 (+0800) Subject: i965/gen7: fix 3DSTATE_LINE_STIPPLE_PATTERN X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=75d402b2118c55b0131025016a859a35733746b5;p=mesa.git i965/gen7: fix 3DSTATE_LINE_STIPPLE_PATTERN The inverse repeat count should taks up bits 31:15 and is in U1.16. Fixes the "Restarting lines within a single Begin/End block" subtest of piglit linestipple, and gets the other failing subtests much closer to passing. v2: Rewrite commit message with more detailed piglit info (by anholt) Reviewed-by: Eric Anholt --- diff --git a/src/mesa/drivers/dri/i965/brw_misc_state.c b/src/mesa/drivers/dri/i965/brw_misc_state.c index 953f6cdbdb3..6b619299006 100644 --- a/src/mesa/drivers/dri/i965/brw_misc_state.c +++ b/src/mesa/drivers/dri/i965/brw_misc_state.c @@ -947,9 +947,20 @@ static void upload_line_stipple(struct brw_context *brw) BEGIN_BATCH(3); OUT_BATCH(_3DSTATE_LINE_STIPPLE_PATTERN << 16 | (3 - 2)); OUT_BATCH(ctx->Line.StipplePattern); - tmp = 1.0 / (GLfloat) ctx->Line.StippleFactor; - tmpi = tmp * (1<<13); - OUT_BATCH(tmpi << 16 | ctx->Line.StippleFactor); + + if (intel->gen >= 7) { + /* in U1.16 */ + tmp = 1.0 / (GLfloat) ctx->Line.StippleFactor; + tmpi = tmp * (1<<16); + OUT_BATCH(tmpi << 15 | ctx->Line.StippleFactor); + } + else { + /* in U1.13 */ + tmp = 1.0 / (GLfloat) ctx->Line.StippleFactor; + tmpi = tmp * (1<<13); + OUT_BATCH(tmpi << 16 | ctx->Line.StippleFactor); + } + CACHED_BATCH(); }