diff options
author | Brian Paul <[email protected]> | 2005-11-20 17:52:40 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-11-20 17:52:40 +0000 |
commit | e31ac052236ea615b4995f9ec301d8af4b864531 (patch) | |
tree | 5f0229e4a01b25078b710cbc4d288c0c37fc83c3 /src/mesa/main/texenvprogram.c | |
parent | 22db53577603afef8fdf62c324ff5977de76b9d8 (diff) |
Make Saturate a 2-bit field again, renamed to SaturateMode with three
possible values: SATURATE_OFF, SATURATE_ZERO_ONE and SATURATE_PLUS_MINUS_ONE.
Diffstat (limited to 'src/mesa/main/texenvprogram.c')
-rw-r--r-- | src/mesa/main/texenvprogram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/texenvprogram.c b/src/mesa/main/texenvprogram.c index 0d536951c94..a92db42bfd0 100644 --- a/src/mesa/main/texenvprogram.c +++ b/src/mesa/main/texenvprogram.c @@ -486,7 +486,7 @@ emit_op(struct texenv_fragment_program *p, emit_arg( &inst->SrcReg[1], src1 ); emit_arg( &inst->SrcReg[2], src2 ); - inst->Saturate = saturate; + inst->SaturateMode = saturate ? SATURATE_ZERO_ONE : SATURATE_OFF; emit_dst( &inst->DstReg, dest, mask ); |