[qfcc] Fix some more incorrect opcodes.

Eventually...
This commit is contained in:
Bill Currie 2025-02-16 18:54:55 +09:00
parent 175e1e00e2
commit c75272efe6

View file

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