projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cc3b028
)
i965: Remove non-existent vertical strides from array.
author
Matt Turner
<mattst88@gmail.com>
Tue, 28 Oct 2014 16:04:41 +0000
(09:04 -0700)
committer
Matt Turner
<mattst88@gmail.com>
Thu, 6 Nov 2014 19:11:37 +0000
(11:11 -0800)
These never existed, as far as I can tell.
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/mesa/drivers/dri/i965/brw_eu_emit.c
patch
|
blob
|
history
diff --git
a/src/mesa/drivers/dri/i965/brw_eu_emit.c
b/src/mesa/drivers/dri/i965/brw_eu_emit.c
index bb12a26b926990b2cf3c8e2eef3e8dd76bd2038d..c4753933b405b1eadf68f3099c978eb2ab78118b 100644
(file)
--- 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;