Defines the values to use for sampler wrap mode
Variables
inlineread onlyCLAMP:Context3DWrapMode
Clamp texture coordinates outside the 0..1 range.
The function is x = max(min(x,0),1)
inlineread onlyREPEAT:Context3DWrapMode
Repeat (tile) texture coordinates outside the 0..1 range.
The function is x = x<0?1.0-frac(abs(x)):frac(x)