diff options
author | Aapo Tahkola <[email protected]> | 2006-06-18 12:50:27 +0000 |
---|---|---|
committer | Aapo Tahkola <[email protected]> | 2006-06-18 12:50:27 +0000 |
commit | 16d1024f27695bd9ceb86ffcdda960396a23ed2c (patch) | |
tree | 6527079ad19bde3440a6f79a763048beb8722691 | |
parent | e6a17b605236145aa397201d52de3f015a22a97e (diff) |
fix broken negate
-rw-r--r-- | src/mesa/tnl/t_vp_build.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/tnl/t_vp_build.c b/src/mesa/tnl/t_vp_build.c index c2fd42c5332..4387e066fcd 100644 --- a/src/mesa/tnl/t_vp_build.c +++ b/src/mesa/tnl/t_vp_build.c @@ -460,7 +460,7 @@ static void emit_arg( struct prog_src_register *src, src->File = reg.file; src->Index = reg.idx; src->Swizzle = reg.swz; - src->NegateBase = reg.negate; + src->NegateBase = reg.negate ? NEGATE_XYZW : 0; src->Abs = 0; src->NegateAbs = 0; src->RelAddr = 0; |