@Deprecated public static enum PssmShadowRenderer.FilterMode extends java.lang.Enum<PssmShadowRenderer.FilterMode>
FilterMode
specifies how shadows are filteredEnum Constant and Description |
---|
Bilinear
Deprecated.
Bilinear filtering is used.
|
Dither
Deprecated.
Dither-based sampling is used, very cheap but can look bad at low
resolutions.
|
Nearest
Deprecated.
Shadows are not filtered.
|
PCF4
Deprecated.
4x4 percentage-closer filtering is used.
|
PCF8
Deprecated.
8x8 percentage-closer filtering is used.
|
PCFPOISSON
Deprecated.
8x8 percentage-closer filtering is used.
|
Modifier and Type | Method and Description |
---|---|
static PssmShadowRenderer.FilterMode |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static PssmShadowRenderer.FilterMode[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PssmShadowRenderer.FilterMode Nearest
public static final PssmShadowRenderer.FilterMode Bilinear
public static final PssmShadowRenderer.FilterMode Dither
public static final PssmShadowRenderer.FilterMode PCF4
public static final PssmShadowRenderer.FilterMode PCFPOISSON
public static final PssmShadowRenderer.FilterMode PCF8
public static PssmShadowRenderer.FilterMode[] values()
for (PssmShadowRenderer.FilterMode c : PssmShadowRenderer.FilterMode.values()) System.out.println(c);
public static PssmShadowRenderer.FilterMode 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 null