mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
fix broken negate
This commit is contained in:
parent
e6a17b6052
commit
16d1024f27
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue