24 using type = uint64_t;
26 static constexpr auto Wireframe = type{1 << 0};
27 static constexpr auto Particle = type{1 << 1};
28 static constexpr auto Skybox = type{1 << 2};
auto GetCombinedPostProcessEffectPassFlags(PostProcessEffectId effectId) -> PostProcessEffectPassFlags
Returns the combined post process pass flags used by an effect.
auto GetMaterialPassNames() -> std::span< const std::string_view >
Returns a view of all material pass names, ordered by ascending flag value.
auto GetPostProcessEffectPassFlags(PostProcessEffectId effectId) -> std::span< const PostProcessPassFlag::type >
Returns a view of the post process passes used by an effect, ordered by ascending flag value.
constexpr auto AspectRatio
Default aspect ratio.
Definition: GraphicsUtility.h:16
auto GetPostProcessEffectNames() -> std::span< const std::string_view >
Returns a view of all post process effect names, ordered by ascending flag value.
auto GetPostProcessPassFlags() -> std::span< const PostProcessPassFlag::type >
Returns a view of all post process pass flags, ordered by ascending flag value.
auto GetPostProcessPassNames() -> std::span< const std::string_view >
Returns a view of all post process pass names, ordered by ascending flag value.
auto GetPostProcessEffectIds() -> std::span< const PostProcessEffectId >
Returns a view of all post process effect ids, ordered by ascending id value.
auto GetMaterialPassFlags() -> std::span< const MaterialPassFlag::type >
Returns a view of all material pass flags, ordered by ascending flag value.
auto AdjustDimensionsToAspectRatio(const nc::Vector2 &dimensions) -> nc::Vector2
Calculate the maximum region conforming to nc::AspectRatio that fits within dimensions.
auto GetPostProcessPassName(PostProcessPassFlag::type pass) -> std::string_view
Returns the name of a post process pass.
auto GetMiscsPassFlags() -> std::span< const MiscPassFlag::type >
Returns a view of all miscellaneous pass flags, ordered by ascending flag value.
PostProcessPassFlag::type PostProcessEffectPassFlags
Set of flags indicating the passes used by a post process effect.
Definition: PostProcess.h:30
uint32_t PostProcessEffectId
Identifier for a post process effect.
Definition: PostProcess.h:27
Pass flags that represent Miscellaneous passes.
Definition: GraphicsUtility.h:23
A two component vector.
Definition: Vector.h:13