mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-04 16:31:30 +00:00
[qfcc] Correct the signed clamp opcode
It's SClamp, not IClamp :/
This commit is contained in:
parent
66b69e33da
commit
175e1e00e2
1 changed files with 2 additions and 2 deletions
|
@ -431,9 +431,9 @@ SRC_LINE
|
|||
" = " GLSL(FClamp) "[x, @construct (genDType, minVal)," "\n"
|
||||
"@construct (genDType, maxVal)];" "\n"
|
||||
"genIType clamp(genIType x, genIType minVal, genIType maxVal)" "\n"
|
||||
" = " GLSL(IClamp) ";" "\n"
|
||||
" = " GLSL(SClamp) ";" "\n"
|
||||
"genIType clamp(genIType x, int minVal, int maxVal)" "\n"
|
||||
" = " GLSL(IClamp) "[x, @construct (genIType, minVal)," "\n"
|
||||
" = " GLSL(SClamp) "[x, @construct (genIType, minVal)," "\n"
|
||||
"@construct (genIType, maxVal)];" "\n"
|
||||
"genUType clamp(genUType x, genUType minVal, genUType maxVal)" "\n"
|
||||
" = " GLSL(UClamp) ";" "\n"
|
||||
|
|
Loading…
Reference in a new issue