projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ea6b34c
)
ir_to_mesa: Initialize the (we never use it) abs field of Mesa src regs.
author
Eric Anholt
<eric@anholt.net>
Wed, 30 Jun 2010 22:49:04 +0000
(15:49 -0700)
committer
Eric Anholt
<eric@anholt.net>
Wed, 30 Jun 2010 22:49:04 +0000
(15:49 -0700)
src/mesa/shader/ir_to_mesa.cpp
patch
|
blob
|
history
diff --git
a/src/mesa/shader/ir_to_mesa.cpp
b/src/mesa/shader/ir_to_mesa.cpp
index 8bfa4687a3714db55785ce39e0df3d6743e4b5c5..ed1373b6d96dbd5271bffd8081756597416435e8 100644
(file)
--- a/
src/mesa/shader/ir_to_mesa.cpp
+++ b/
src/mesa/shader/ir_to_mesa.cpp
@@
-1401,6
+1401,7
@@
mesa_src_reg_from_ir_src_reg(ir_to_mesa_src_reg reg)
mesa_reg.Swizzle = reg.swizzle;
mesa_reg.RelAddr = reg.reladdr;
mesa_reg.Negate = reg.negate;
+ mesa_reg.Abs = 0;
return mesa_reg;
}