# Print output for @column tags ?>
public
static
final
enum
Shader.TileMode
extends Enum<Shader.TileMode>
java.lang.Object | ||
↳ | java.lang.Enum<android.graphics.Shader.TileMode> | |
↳ | android.graphics.Shader.TileMode |
Enum values | |
---|---|
Shader.TileMode |
CLAMP
Replicate the edge color if the shader draws outside of its original bounds. |
Shader.TileMode |
DECAL
Render the shader's image pixels only within its original bounds. |
Shader.TileMode |
MIRROR
Repeat the shader's image horizontally and vertically, alternating mirror images so that adjacent images always seam. |
Shader.TileMode |
REPEAT
Repeat the shader's image horizontally and vertically. |
Public methods | |
---|---|
static
Shader.TileMode
|
valueOf(String name)
|
static
final
TileMode[]
|
values()
|
Inherited methods | |
---|---|
public static final Shader.TileMode CLAMP
Replicate the edge color if the shader draws outside of its original bounds.
public static final Shader.TileMode DECAL
Render the shader's image pixels only within its original bounds. If the shader draws outside of its original bounds, transparent black is drawn instead.
public static final Shader.TileMode MIRROR
Repeat the shader's image horizontally and vertically, alternating mirror images so that adjacent images always seam.
public static final Shader.TileMode REPEAT
Repeat the shader's image horizontally and vertically.
public static Shader.TileMode valueOf (String name)
Parameters | |
---|---|
name |
String |
Returns | |
---|---|
Shader.TileMode |