mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-04 16:31:30 +00:00
[qfcc] Fix some more incorrect opcodes.
Eventually...
This commit is contained in:
parent
175e1e00e2
commit
c75272efe6
1 changed files with 5 additions and 5 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue