From: Matt Turner Date: Tue, 28 Oct 2014 16:04:41 +0000 (-0700) Subject: i965: Remove non-existent vertical strides from array. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9557cf7d0d2e5a76a5277c2a4825e265609b2fca;p=mesa.git i965: Remove non-existent vertical strides from array. These never existed, as far as I can tell. Reviewed-by: Kenneth Graunke --- 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;