From c75272efe6867f75b1ec2d3c78492f074d937529 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 16 Feb 2025 18:54:55 +0900 Subject: [PATCH] [qfcc] Fix some more incorrect opcodes. Eventually... --- tools/qfcc/source/glsl-builtins.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/qfcc/source/glsl-builtins.c b/tools/qfcc/source/glsl-builtins.c index 40f0ecc4f..0d20b55da 100644 --- a/tools/qfcc/source/glsl-builtins.c +++ b/tools/qfcc/source/glsl-builtins.c @@ -405,13 +405,13 @@ SRC_LINE "genFType modf(genFType x, out genFType i);" "\n" "genDType modf(genDType x, out genDType i);" "\n" "genFType min(genFType x, genFType y) = " GLSL(FMin) ";" "\n" -"genFType min(genFType x, float y) = " GLSL(FMax) "[x, @construct (genFType, y)];" "\n" +"genFType min(genFType x, float y) = " GLSL(FMin) "[x, @construct (genFType, y)];" "\n" "genDType min(genDType x, genDType y) = " GLSL(FMin) ";" "\n" -"genDType min(genDType x, double y) = " GLSL(FMax) "[x, @construct (genDType, y)];" "\n" -"genIType min(genIType x, genIType y) = " GLSL(IMin) ";" "\n" -"genIType min(genIType x, int y) = " GLSL(FMax) "[x, @construct (genIType, y)];" "\n" +"genDType min(genDType x, double y) = " GLSL(FMin) "[x, @construct (genDType, y)];" "\n" +"genIType min(genIType x, genIType y) = " GLSL(SMin) ";" "\n" +"genIType min(genIType x, int y) = " GLSL(SMin) "[x, @construct (genIType, y)];" "\n" "genUType min(genUType x, genUType y) = " GLSL(UMin) ";" "\n" -"genUType min(genUType x, uint y) = " GLSL(FMax) "[x, @construct (genUType, y)];" "\n" +"genUType min(genUType x, uint y) = " GLSL(UMin) "[x, @construct (genUType, y)];" "\n" "genFType max(genFType x, genFType y) = " GLSL(FMax) ";" "\n" "genFType max(genFType x, float y) = " GLSL(FMax) "[x, @construct (genFType, y)];" "\n" "genDType max(genDType x, genDType y) = " GLSL(FMax) ";" "\n"