public enum EdgeFilteringMode extends java.lang.Enum<EdgeFilteringMode>
ShadowEdgeFiltering
specifies how shadows are filteredEnum Constant and Description |
---|
Bilinear
Bilinear filtering is used.
|
Dither
Dither-based sampling is used, very cheap but can look bad at low
resolutions.
|
Nearest
Shadows are not filtered.
|
PCF4
4x4 percentage-closer filtering is used.
|
PCF8
8x8 percentage-closer filtering is used.
|
PCFPOISSON
12 samples percentage-closer filtering with a POISON disc distribution
is used.
|
Modifier and Type | Method and Description |
---|---|
int |
getMaterialParamValue() |
static EdgeFilteringMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EdgeFilteringMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EdgeFilteringMode Nearest
public static final EdgeFilteringMode Bilinear
public static final EdgeFilteringMode Dither
public static final EdgeFilteringMode PCF4
public static final EdgeFilteringMode PCFPOISSON
public static final EdgeFilteringMode PCF8
public static EdgeFilteringMode[] values()
for (EdgeFilteringMode c : EdgeFilteringMode.values()) System.out.println(c);
public static EdgeFilteringMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getMaterialParamValue()