From 175e1e00e2b843fe32cdb8568af8bfbd37da4fbc Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 16 Feb 2025 18:52:14 +0900 Subject: [PATCH] [qfcc] Correct the signed clamp opcode It's SClamp, not IClamp :/ --- tools/qfcc/source/glsl-builtins.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/qfcc/source/glsl-builtins.c b/tools/qfcc/source/glsl-builtins.c index ed80ce565..40f0ecc4f 100644 --- a/tools/qfcc/source/glsl-builtins.c +++ b/tools/qfcc/source/glsl-builtins.c @@ -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"