public enum BlendFunction extends Enum<BlendFunction>
| Enum Constant and Description |
|---|
CONSTANT_ALPHA |
CONSTANT_COLOR |
DST_ALPHA |
DST_COLOR |
ONE |
ONE_MINUS_CONSTANT_ALPHA |
ONE_MINUS_CONSTANT_COLOR |
ONE_MINUS_DST_ALPHA |
ONE_MINUS_DST_COLOR |
ONE_MINUS_SRC_ALPHA |
ONE_MINUS_SRC_COLOR |
SRC_ALPHA |
SRC_ALPHA_SATURATE |
SRC_COLOR |
ZERO |
| Modifier and Type | Method and Description |
|---|---|
static BlendFunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlendFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlendFunction ZERO
public static final BlendFunction ONE
public static final BlendFunction SRC_COLOR
public static final BlendFunction ONE_MINUS_SRC_COLOR
public static final BlendFunction DST_COLOR
public static final BlendFunction ONE_MINUS_DST_COLOR
public static final BlendFunction SRC_ALPHA
public static final BlendFunction ONE_MINUS_SRC_ALPHA
public static final BlendFunction DST_ALPHA
public static final BlendFunction ONE_MINUS_DST_ALPHA
public static final BlendFunction CONSTANT_COLOR
public static final BlendFunction ONE_MINUS_CONSTANT_COLOR
public static final BlendFunction CONSTANT_ALPHA
public static final BlendFunction ONE_MINUS_CONSTANT_ALPHA
public static final BlendFunction SRC_ALPHA_SATURATE
public static BlendFunction[] values()
for (BlendFunction c : BlendFunction.values()) System.out.println(c);
public static BlendFunction valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2014. All rights reserved.