mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-07 01:42:04 +00:00
[qfcc] Get the abs functions working
Well... probably (again, build issues).
This commit is contained in:
parent
64bbdbda44
commit
341504261a
1 changed files with 3 additions and 3 deletions
|
@ -417,9 +417,9 @@ SRC_LINE
|
|||
|
||||
//common functions
|
||||
SRC_LINE
|
||||
"genFType abs(genFType x);" "\n"
|
||||
"genIType abs(genIType x);" "\n"
|
||||
"genDType abs(genDType x);" "\n"
|
||||
"genFType abs(genFType x) = " GLSL(FAbs) ";" "\n"
|
||||
"genIType abs(genIType x) = " GLSL(SAbs) ";" "\n"
|
||||
"genDType abs(genDType x) = " GLSL(FAbs) ";" "\n"
|
||||
"genFType sign(genFType x);" "\n"
|
||||
"genIType sign(genIType x);" "\n"
|
||||
"genDType sign(genDType x);" "\n"
|
||||
|
|
Loading…
Reference in a new issue