aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Turner <[email protected]>2014-10-28 09:04:41 -0700
committerMatt Turner <[email protected]>2014-11-06 11:11:37 -0800
commit9557cf7d0d2e5a76a5277c2a4825e265609b2fca (patch)
tree7a28888704007a214c2942e86920d4281f7647fe
parentcc3b028a4f75f43adb878fb673f7cec9044aff89 (diff)
i965: Remove non-existent vertical strides from array.
These never existed, as far as I can tell. Reviewed-by: Kenneth Graunke <[email protected]>
-rw-r--r--src/mesa/drivers/dri/i965/brw_eu_emit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_eu_emit.c b/src/mesa/drivers/dri/i965/brw_eu_emit.c
index bb12a26b926..c4753933b40 100644
--- a/src/mesa/drivers/dri/i965/brw_eu_emit.c
+++ b/src/mesa/drivers/dri/i965/brw_eu_emit.c
@@ -227,7 +227,7 @@ static void
validate_reg(const struct brw_context *brw, brw_inst *inst, struct brw_reg reg)
{
int hstride_for_reg[] = {0, 1, 2, 4};
- int vstride_for_reg[] = {0, 1, 2, 4, 8, 16, 32, 64, 128, 256};
+ int vstride_for_reg[] = {0, 1, 2, 4, 8, 16, 32};
int width_for_reg[] = {1, 2, 4, 8, 16};
int execsize_for_reg[] = {1, 2, 4, 8, 16};
int width, hstride, vstride, execsize;