NcEngine
PostProcess.h File Reference
#include "ncengine/asset/AssetViews.h"
#include "ncmath/Vector.h"
#include <limits>
#include <variant>

Go to the source code of this file.

Classes

struct  nc::PostProcessPassFlag
 Post process pass flags. More...
 
struct  nc::EmptyPassProperties
 Post process property type representing an empty or uninitialized state. More...
 
struct  nc::OutlinePassProperties
 Properties for the outline pass. More...
 
struct  nc::NoisePassProperties
 Properties for the noise pass. More...
 

Typedefs

using nc::PostProcessEffectId = uint32_t
 Identifier for a post process effect.
 
using nc::PostProcessEffectPassFlags = PostProcessPassFlag::type
 Set of flags indicating the passes used by a post process effect.
 
using nc::PostProcessPassProperties = std::variant< EmptyPassProperties, OutlinePassProperties, NoisePassProperties >
 Generic post process property type.
 

Functions

auto nc::PassHasProperties (PostProcessPassFlag::type pass) -> bool
 Returns if a post process pass has a property type.
 
auto nc::MakeDefaultPassProperties (PostProcessPassFlag::type pass) -> PostProcessPassProperties
 Construct a PostProcessPassProperties holding the property type for a pass.
 

Variables

constexpr auto nc::NullPostProcessEffectId = std::numeric_limits<PostProcessEffectId>::max()
 Null identifier for a post process effect.
 
constexpr auto nc::OutlinedToonEffectId = PostProcessEffectId{0}
 Identifier for the outlined toon post process effect.
 
constexpr auto nc::OutlinedToonEffectPassFlags = PostProcessPassFlag::Outline | PostProcessPassFlag::Fxaa | PostProcessPassFlag::Noise
 Pass flags for the outlined toon post process effect.
 

Detailed Description