Static variables
staticfinalinlineread onlyCLAMP:Int = 0
Clamp texture coordinates outside the 0..1 range.
The function is x = max(min(x,0),1)
staticfinalinlineread onlyREPEAT:Int = 2
Repeat (tile) texture coordinates outside the 0..1 range.
The function is x = x<0?1.0-frac(abs(x)):frac(x)