[qfcc] Correct the signed clamp opcode

It's SClamp, not IClamp :/
This commit is contained in:
Bill Currie 2025-02-16 18:52:14 +09:00
parent 66b69e33da
commit 175e1e00e2

View file

@ -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"