[Mesa-dev] [PATCH 2/2] i965: Remove non-existent vertical strides from array.
Matt Turner
mattst88 at gmail.com
Fri Oct 31 17:47:14 PDT 2014
These never existed, as far as I can tell.
---
src/mesa/drivers/dri/i965/brw_eu_emit.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/mesa/drivers/dri/i965/brw_eu_emit.c b/src/mesa/drivers/dri/i965/brw_eu_emit.c
index bb6334b..b611e77 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;
--
2.0.4
More information about the mesa-dev
mailing list