Defines the values to use for sampler wrap mode

Variables

@:enum@:implinlineread onlyCLAMP:Context3DWrapMode

Clamp texture coordinates outside the 0..1 range.

The function is x = max(min(x,0),1)

@:enum@:implinlineread onlyCLAMP_U_REPEAT_V:Context3DWrapMode

Clamp in U axis but Repeat in V axis.

@:enum@:implinlineread onlyREPEAT:Context3DWrapMode

Repeat (tile) texture coordinates outside the 0..1 range.

The function is x = x<0?1.0-frac(abs(x)):frac(x)

@:enum@:implinlineread onlyREPEAT_U_CLAMP_V:Context3DWrapMode

Repeat in U axis but Clamp in V axis.