NcEngine
GraphicsUtility.h
Go to the documentation of this file.
1
5#pragma once
6
9
10#include <span>
11#include <string_view>
12
13namespace nc
14{
16constexpr auto AspectRatio = 16.0f / 9.0f;
17
20
23{
24 using type = uint64_t;
25
26 static constexpr auto Wireframe = type{1 << 0};
27 static constexpr auto Particle = type{1 << 1};
28 static constexpr auto Skybox = type{1 << 2};
29};
30
32auto GetMaterialPassNames() -> std::span<const std::string_view>;
33
35auto GetMaterialPassFlags() -> std::span<const MaterialPassFlag::type>;
36
38auto GetMiscsPassFlags() -> std::span<const MiscPassFlag::type>;
39
41auto GetPostProcessPassNames() -> std::span<const std::string_view>;
42
44auto GetPostProcessPassFlags() -> std::span<const PostProcessPassFlag::type>;
45
47auto GetPostProcessPassName(PostProcessPassFlag::type pass) -> std::string_view;
48
50auto GetPostProcessEffectNames() -> std::span<const std::string_view>;
51
53auto GetPostProcessEffectIds() -> std::span<const PostProcessEffectId>;
54
56auto GetPostProcessEffectPassFlags(PostProcessEffectId effectId) -> std::span<const PostProcessPassFlag::type>;
57
60} // namespace nc
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