Package com.jme3.shadow
Enum Class PssmShadowRenderer.FilterMode
- All Implemented Interfaces:
Serializable
,Comparable<PssmShadowRenderer.FilterMode>
,Constable
- Enclosing class:
- PssmShadowRenderer
@Deprecated
public static enum PssmShadowRenderer.FilterMode
extends Enum<PssmShadowRenderer.FilterMode>
Deprecated.
FilterMode
specifies how shadows are filtered-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionDeprecated.Bilinear filtering is used.Deprecated.Dither-based sampling is used, very cheap but can look bad at low resolutions.Deprecated.Shadows are not filtered.Deprecated.4x4 percentage-closer filtering is used.Deprecated.8x8 percentage-closer filtering is used.Deprecated.8x8 percentage-closer filtering is used. -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Returns the enum constant of this class with the specified name.static PssmShadowRenderer.FilterMode[]
values()
Deprecated.Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
Nearest
Deprecated.Shadows are not filtered. Nearest sample is used, causing in blocky shadows. -
Bilinear
Deprecated.Bilinear filtering is used. Has the potential of being hardware accelerated on some GPUs -
Dither
Deprecated.Dither-based sampling is used, very cheap but can look bad at low resolutions. -
PCF4
Deprecated.4x4 percentage-closer filtering is used. Shadows will be smoother at the cost of performance -
PCFPOISSON
Deprecated.8x8 percentage-closer filtering is used. Shadows will be smoother at the cost of performance -
PCF8
Deprecated.8x8 percentage-closer filtering is used. Shadows will be smoother at the cost of performance
-
-
Method Details
-
values
Deprecated.Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Deprecated.Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
EdgeFilteringMode