@Deprecated public static enum PssmShadowRenderer.FilterMode extends java.lang.Enum<PssmShadowRenderer.FilterMode>
FilterMode specifies how shadows are filtered| Enum Constant and Description | 
|---|
| BilinearDeprecated.  Bilinear filtering is used. | 
| DitherDeprecated.  Dither-based sampling is used, very cheap but can look bad at low
 resolutions. | 
| NearestDeprecated.  Shadows are not filtered. | 
| PCF4Deprecated.  4x4 percentage-closer filtering is used. | 
| PCF8Deprecated.  8x8 percentage-closer filtering is used. | 
| PCFPOISSONDeprecated.  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