18 using type = uint64_t;
20 static constexpr auto None = type{0};
21 static constexpr auto Outline = type{1 << 0};
22 static constexpr auto Fxaa = type{1 << 1};
23 static constexpr auto Noise = type{1 << 2};
47 Vector3 color = Vector3::Zero();
49 float depthThreshold = 0.8f;
50 float viewDirDepthThreshold = 0.4f;
51 float normalThreshold = 0.4f;
57 Vector3 maskGradientStart = Vector3::Zero();
58 float maskGradientAmount = 0.1f;
59 Vector3 maskGradientEnd = Vector3::One();
61 float noiseTexAmount = 0.1f;
62 float noiseTexTiling = 1.0f;
constexpr auto OutlinedToonEffectId
Identifier for the outlined toon post process effect.
Definition: PostProcess.h:36
std::variant< EmptyPassProperties, OutlinePassProperties, NoisePassProperties > PostProcessPassProperties
Generic post process property type.
Definition: PostProcess.h:68
PostProcessPassFlag::type PostProcessEffectPassFlags
Set of flags indicating the passes used by a post process effect.
Definition: PostProcess.h:30
constexpr auto OutlinedToonEffectPassFlags
Pass flags for the outlined toon post process effect.
Definition: PostProcess.h:39
auto MakeDefaultPassProperties(PostProcessPassFlag::type pass) -> PostProcessPassProperties
Construct a PostProcessPassProperties holding the property type for a pass.
uint32_t PostProcessEffectId
Identifier for a post process effect.
Definition: PostProcess.h:27
constexpr auto NullPostProcessEffectId
Null identifier for a post process effect.
Definition: PostProcess.h:33
auto PassHasProperties(PostProcessPassFlag::type pass) -> bool
Returns if a post process pass has a property type.
Post process property type representing an empty or uninitialized state.
Definition: PostProcess.h:42
Properties for the noise pass.
Definition: PostProcess.h:56
Properties for the outline pass.
Definition: PostProcess.h:46
Post process pass flags.
Definition: PostProcess.h:17
A three component vector.
Definition: Vector.h:29
Definition: AssetViews.h:66