projects
/
profile
/
ivi
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fea7d34
)
i965/vs: Fix access of attribute arrays.
author
Eric Anholt
<eric@anholt.net>
Tue, 9 Aug 2011 22:08:47 +0000
(15:08 -0700)
committer
Eric Anholt
<eric@anholt.net>
Tue, 16 Aug 2011 20:04:43 +0000
(13:04 -0700)
By leaving out the column index, we were reading an unallocated
attribute on glsl-mat-attribute.
src/mesa/drivers/dri/i965/brw_vec4_emit.cpp
patch
|
blob
|
history
diff --git
a/src/mesa/drivers/dri/i965/brw_vec4_emit.cpp
b/src/mesa/drivers/dri/i965/brw_vec4_emit.cpp
index
df9521c
..
517a3e3
100644
(file)
--- a/
src/mesa/drivers/dri/i965/brw_vec4_emit.cpp
+++ b/
src/mesa/drivers/dri/i965/brw_vec4_emit.cpp
@@
-52,8
+52,9
@@
vec4_visitor::setup_attributes(int payload_reg)
if (inst->src[i].file != ATTR)
continue;
+ int grf = attribute_map[inst->src[i].reg + inst->src[i].reg_offset];
inst->src[i].file = HW_REG;
- inst->src[i].fixed_hw_reg = brw_vec8_grf(
attribute_map[inst->src[i].reg]
, 0);
+ inst->src[i].fixed_hw_reg = brw_vec8_grf(
grf
, 0);
inst->src[i].fixed_hw_reg.dw1.bits.swizzle = inst->src[i].swizzle;
}
}