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:
6e542f1
)
SrcReg->Swizzle is always initialized to SWIZZLE_NOOP, and if the program
author
Dave Airlie
<airliedfreedesktop.org>
Wed, 19 Apr 2006 23:15:51 +0000
(23:15 +0000)
committer
Dave Airlie
<airliedfreedesktop.org>
Wed, 19 Apr 2006 23:15:51 +0000
(23:15 +0000)
specifies a 2/3/4-compontent swizzle suffix, SrcReg->Swizzles is just ORed
against the new component values, without resetting it first.
Attached patch makes tests/vptest2 pass.
From Tilam Sauerbeck bug 6673
src/mesa/shader/nvvertparse.c
patch
|
blob
|
history
diff --git
a/src/mesa/shader/nvvertparse.c
b/src/mesa/shader/nvvertparse.c
index
71d5116
..
a7e062c
100644
(file)
--- a/
src/mesa/shader/nvvertparse.c
+++ b/
src/mesa/shader/nvvertparse.c
@@
-699,6
+699,9
@@
Parse_SwizzleSrcReg(struct parse_state *parseState, struct prog_src_register *sr
else {
/* 2, 3 or 4-component swizzle */
GLint k;
+
+ srcReg->Swizzle = 0;
+
for (k = 0; token[k] && k < 5; k++) {
if (token[k] == 'x')
srcReg->Swizzle |= 0 << (k*3);