summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Ekstrand <jason.ekstrand@intel.com>2016-08-09 17:25:51 -0700
committerJason Ekstrand <jason.ekstrand@intel.com>2016-08-19 03:11:29 -0700
commitb5c20a98c138e0aa2be0e14b2fa200ecb2b84a83 (patch)
tree0ac67499c6d7e860f8bd42a21fc3e1747c403ebc
parent5e2dd7a381b198b40f695f3ab9f0761787470fa7 (diff)
downloadexternal_mesa3d-b5c20a98c138e0aa2be0e14b2fa200ecb2b84a83.zip
external_mesa3d-b5c20a98c138e0aa2be0e14b2fa200ecb2b84a83.tar.gz
external_mesa3d-b5c20a98c138e0aa2be0e14b2fa200ecb2b84a83.tar.bz2
i965/blorp: Stop setting point and line rasterization rules
Blorp never uses points or lines and the default values of 0 are perfectly fine. Explicitly setting them is just noise. Signed-off-by: Jason Ekstrand <jason@jlekstrand.net> Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
-rw-r--r--src/mesa/drivers/dri/i965/gen6_blorp.c2
-rw-r--r--src/mesa/drivers/dri/i965/gen7_blorp.c2
-rw-r--r--src/mesa/drivers/dri/i965/gen8_blorp.c4
3 files changed, 1 insertions, 7 deletions
diff --git a/src/mesa/drivers/dri/i965/gen6_blorp.c b/src/mesa/drivers/dri/i965/gen6_blorp.c
index 7d37ea3..78e9472 100644
--- a/src/mesa/drivers/dri/i965/gen6_blorp.c
+++ b/src/mesa/drivers/dri/i965/gen6_blorp.c
@@ -235,8 +235,6 @@ gen6_blorp_emit_wm_config(struct brw_context *brw,
default:
unreachable("not reached");
}
- dw5 |= GEN6_WM_LINE_AA_WIDTH_1_0;
- dw5 |= GEN6_WM_LINE_END_CAP_AA_WIDTH_0_5;
dw5 |= (brw->max_wm_threads - 1) << GEN6_WM_MAX_THREADS_SHIFT;
dw6 |= 0 << GEN6_WM_BARYCENTRIC_INTERPOLATION_MODE_SHIFT; /* No interp */
dw6 |= (params->wm_prog_data ? prog_data->num_varying_inputs : 0) <<
diff --git a/src/mesa/drivers/dri/i965/gen7_blorp.c b/src/mesa/drivers/dri/i965/gen7_blorp.c
index 1b9c853..1286b55 100644
--- a/src/mesa/drivers/dri/i965/gen7_blorp.c
+++ b/src/mesa/drivers/dri/i965/gen7_blorp.c
@@ -261,8 +261,6 @@ gen7_blorp_emit_wm_config(struct brw_context *brw,
default:
unreachable("not reached");
}
- dw1 |= GEN7_WM_LINE_AA_WIDTH_1_0;
- dw1 |= GEN7_WM_LINE_END_CAP_AA_WIDTH_0_5;
dw1 |= 0 << GEN7_WM_BARYCENTRIC_INTERPOLATION_MODE_SHIFT; /* No interp */
if (params->wm_prog_data)
diff --git a/src/mesa/drivers/dri/i965/gen8_blorp.c b/src/mesa/drivers/dri/i965/gen8_blorp.c
index 2e90438..2223b23 100644
--- a/src/mesa/drivers/dri/i965/gen8_blorp.c
+++ b/src/mesa/drivers/dri/i965/gen8_blorp.c
@@ -270,9 +270,7 @@ gen8_blorp_emit_wm_state(struct brw_context *brw)
{
BEGIN_BATCH(2);
OUT_BATCH(_3DSTATE_WM << 16 | (2 - 2));
- OUT_BATCH(GEN7_WM_LINE_AA_WIDTH_1_0 |
- GEN7_WM_LINE_END_CAP_AA_WIDTH_0_5 |
- GEN7_WM_POINT_RASTRULE_UPPER_RIGHT);
+ OUT_BATCH(0);
ADVANCE_BATCH();
}