5namespace Grindstone::GraphicsAPI {
6 enum class TextureWrapMode : uint8_t {
14 enum class TextureFilter : uint8_t {
19 enum class ClearMode : uint8_t {
27 enum class ColorFormat : uint8_t {
60 enum class DepthFormat : uint8_t {
71 #define SHADER_STAGE_TYPES \
72 GSExpandEntry(Vertex, 1 << 0),\
73 GSExpandEntry(TesselationEvaluation, 1 << 1),\
74 GSExpandEntry(TesselationControl, 1 << 2),\
75 GSExpandEntry(Geometry, 1 << 3),\
76 GSExpandEntry(Fragment, 1 << 4),\
77 GSExpandEntry(Task, 1 << 5),\
78 GSExpandEntry(Mesh, 1 << 6),\
79 GSExpandEntry(Compute, 1 << 7)
81 enum class ShaderStage : uint8_t {
82 #define GSExpandEntry(key, bit) key
85 GraphicsCount = Compute,
89 constexpr uint8_t numShaderGraphicStage =
static_cast<uint8_t
>(ShaderStage::GraphicsCount);
90 constexpr uint8_t numShaderTotalStage =
static_cast<uint8_t
>(ShaderStage::Count);
92 enum class ShaderStageBit : uint8_t {
94#define GSExpandEntry(key, bit) key = bit
97 AllGraphics = Vertex | TesselationEvaluation | TesselationControl | Geometry | Fragment | Task | Mesh,
98 All = AllGraphics | Compute
101 constexpr const char* shaderStageNames[] = {
102 #define GSExpandEntry(key, bit) #key
107 inline const char* GetShaderStageName(Grindstone::GraphicsAPI::ShaderStage stage) {
108 uint8_t index =
static_cast<uint8_t
>(stage);
109 if (index >=
static_cast<uint8_t
>(ShaderStage::Count)) {
113 return shaderStageNames[index];
116 enum class BindingType {
121 RenderTextureStorageImage
124#define BLEND_OPERATIONS_LIST \
125 GSExpandEntry(None),\
127 GSExpandEntry(Subtract),\
128 GSExpandEntry(ReverseSubtract),\
129 GSExpandEntry(Minimum),\
130 GSExpandEntry(Maximum),\
131 GSExpandEntry(Zero),\
132 GSExpandEntry(Source),\
133 GSExpandEntry(Destination),\
134 GSExpandEntry(SourceOver),\
135 GSExpandEntry(DestinationOver),\
136 GSExpandEntry(SourceIn),\
137 GSExpandEntry(DestinationIn),\
138 GSExpandEntry(SourceOut),\
139 GSExpandEntry(DestinationOut),\
140 GSExpandEntry(SourceAtop),\
141 GSExpandEntry(DestinationAtop),\
143 GSExpandEntry(Multiply),\
144 GSExpandEntry(Screen),\
145 GSExpandEntry(Overlay),\
146 GSExpandEntry(Darken),\
147 GSExpandEntry(Lighten),\
148 GSExpandEntry(ColorDodge),\
149 GSExpandEntry(ColorBurn),\
150 GSExpandEntry(HardLight),\
151 GSExpandEntry(SoftLight),\
152 GSExpandEntry(Difference),\
153 GSExpandEntry(Exclusion),\
154 GSExpandEntry(Invert),\
155 GSExpandEntry(InvertRGB),\
156 GSExpandEntry(LinearDodge),\
157 GSExpandEntry(LinearBurn),\
158 GSExpandEntry(VividLight),\
159 GSExpandEntry(LinearLight),\
160 GSExpandEntry(PinLight),\
161 GSExpandEntry(HardMix),\
162 GSExpandEntry(HSLHue),\
163 GSExpandEntry(HSLSaturation),\
164 GSExpandEntry(HSLColor),\
165 GSExpandEntry(HSLLuminosity),\
166 GSExpandEntry(Plus),\
167 GSExpandEntry(PlusClamped),\
168 GSExpandEntry(PlusClampedAlpha),\
169 GSExpandEntry(PlusDark),\
170 GSExpandEntry(Minus),\
171 GSExpandEntry(MinusClamped),\
172 GSExpandEntry(Contrast),\
173 GSExpandEntry(InvertOVG),\
175 GSExpandEntry(Green),\
178 enum class BlendOperation : uint8_t {
179#define GSExpandEntry(key) key
180 BLEND_OPERATIONS_LIST,
185 constexpr const char* blendOperationNames[] = {
186 #define GSExpandEntry(key) #key
187 BLEND_OPERATIONS_LIST
191 inline const char* GetBlendOperationName(Grindstone::GraphicsAPI::BlendOperation op) {
192 uint8_t index =
static_cast<uint8_t
>(op);
193 if (index >=
static_cast<uint8_t
>(BlendOperation::Count)) {
197 return blendOperationNames[index];
201#define BLEND_FACTORS_LIST \
202 GSExpandEntry(Zero),\
204 GSExpandEntry(SrcColor),\
205 GSExpandEntry(OneMinusSrcColor),\
206 GSExpandEntry(DstColor),\
207 GSExpandEntry(OneMinusDstColor),\
208 GSExpandEntry(SrcAlpha),\
209 GSExpandEntry(OneMinusSrcAlpha),\
210 GSExpandEntry(DstAlpha),\
211 GSExpandEntry(OneMinusDstAlpha),\
212 GSExpandEntry(ConstantColor),\
213 GSExpandEntry(OneMinusConstantColor),\
214 GSExpandEntry(ConstantAlpha),\
215 GSExpandEntry(OneMinusConstantAlpha),\
216 GSExpandEntry(SrcAlphaSaturate),\
217 GSExpandEntry(Src1Color),\
218 GSExpandEntry(OneMinusSrc1Color),\
219 GSExpandEntry(Src1Alpha),\
220 GSExpandEntry(OneMinusSrc1Alpha)
222 enum class BlendFactor : uint8_t {
223 #define GSExpandEntry(key) key
229 constexpr const char* blendFactorNames[] = {
230 #define GSExpandEntry(key) #key
235 inline const char* GetBlendFactorName(Grindstone::GraphicsAPI::BlendFactor factor) {
236 uint8_t index =
static_cast<uint8_t
>(factor);
237 if (index >=
static_cast<uint8_t
>(BlendFactor::Count)) {
241 return blendFactorNames[index];
245 BlendOperation colorOperation = BlendOperation::None;
246 BlendFactor colorFactorSrc = BlendFactor::One;
247 BlendFactor colorFactorDst = BlendFactor::One;
249 BlendOperation alphaOperation = BlendOperation::None;
250 BlendFactor alphaFactorSrc = BlendFactor::One;
251 BlendFactor alphaFactorDst = BlendFactor::One;
255 BlendOperation::None,
259 BlendOperation::None,
280 BlendFactor::SrcAlpha,
281 BlendFactor::OneMinusSrcAlpha,
285 BlendFactor::OneMinusSrcAlpha
290#define GEOMETRY_TYPES_LIST \
291 GSExpandEntry(Points),\
292 GSExpandEntry(Lines),\
293 GSExpandEntry(LineStrips),\
294 GSExpandEntry(LineLoops),\
295 GSExpandEntry(TriangleStrips),\
296 GSExpandEntry(TriangleFans),\
297 GSExpandEntry(Triangles),\
298 GSExpandEntry(LinesAdjacency),\
299 GSExpandEntry(TrianglesAdjacency),\
300 GSExpandEntry(TriangleStripsAdjacency),\
301 GSExpandEntry(Patches)
303 enum class GeometryType : uint8_t {
304 #define GSExpandEntry(key) key
310 constexpr const char* geometryTypeNames[] = {
311 #define GSExpandEntry(key) #key
316 inline const char* GetGeometryTypeName(Grindstone::GraphicsAPI::GeometryType stage) {
317 uint8_t index =
static_cast<uint8_t
>(stage);
318 if (index >=
static_cast<uint8_t
>(GeometryType::Count)) {
322 return geometryTypeNames[index];
325 enum class PolygonFillMode : uint8_t {
331 constexpr const char* polygonFillModeNames[] = {
337 inline const char* GetPolygonFillModeName(Grindstone::GraphicsAPI::PolygonFillMode mode) {
338 uint8_t index =
static_cast<uint8_t
>(mode);
339 if (index >
static_cast<uint8_t
>(PolygonFillMode::Fill)) {
343 return polygonFillModeNames[index];
346 enum class CompareOperation : uint8_t {
357 constexpr const char* compareOperationNames[] = {
358 #define GSExpandEntry(key, bit) #key
363 inline const char* GetCompareOperationName(Grindstone::GraphicsAPI::CompareOperation op) {
364 uint8_t index =
static_cast<uint8_t
>(op);
365 if (index >
static_cast<uint8_t
>(CompareOperation::Always)) {
369 return compareOperationNames[index];
372 enum class ColorMask : uint8_t {
386 RGB = Red | Green | Blue,
387 RGA = Red | Green | Alpha,
388 RBA = Red | Blue | Alpha,
389 GBA = Green | Blue | Alpha,
391 RGBA = Red | Green | Blue | Alpha
394 constexpr const char* colorMaskNames[] = {
413 inline const char* GetColorMaskName(Grindstone::GraphicsAPI::ColorMask colorMask) {
414 uint8_t index =
static_cast<uint8_t
>(colorMask);
415 if (index >
static_cast<uint8_t
>(ColorMask::RGBA)) {
419 return colorMaskNames[index];
422 enum class CullMode : uint8_t {
429 constexpr const char* cullModeNames[] = {
436 inline const char* GetCullModeName(Grindstone::GraphicsAPI::CullMode cullMode) {
437 uint8_t index =
static_cast<uint8_t
>(cullMode);
438 if (index >
static_cast<uint8_t
>(CullMode::Both)) {
442 return cullModeNames[index];
446inline Grindstone::GraphicsAPI::ShaderStageBit operator~(
const Grindstone::GraphicsAPI::ShaderStageBit stages) {
447 using ShaderStageBitType = uint8_t;
448 return static_cast<Grindstone::GraphicsAPI::ShaderStageBit
>(~static_cast<ShaderStageBitType>(stages));
451inline Grindstone::GraphicsAPI::ShaderStageBit operator|(
const Grindstone::GraphicsAPI::ShaderStageBit a,
const Grindstone::GraphicsAPI::ShaderStageBit b) {
452 using ShaderStageBitType = uint8_t;
453 return static_cast<Grindstone::GraphicsAPI::ShaderStageBit
>(
static_cast<ShaderStageBitType
>(a) |
static_cast<ShaderStageBitType
>(b));
456inline Grindstone::GraphicsAPI::ShaderStageBit operator&(
const Grindstone::GraphicsAPI::ShaderStageBit a,
const Grindstone::GraphicsAPI::ShaderStageBit b) {
457 using ShaderStageBitType = uint8_t;
458 return static_cast<Grindstone::GraphicsAPI::ShaderStageBit
>(
static_cast<ShaderStageBitType
>(a) &
static_cast<ShaderStageBitType
>(b));
461inline Grindstone::GraphicsAPI::ShaderStageBit operator^(
const Grindstone::GraphicsAPI::ShaderStageBit a,
const Grindstone::GraphicsAPI::ShaderStageBit b) {
462 using ShaderStageBitType = uint8_t;
463 return static_cast<Grindstone::GraphicsAPI::ShaderStageBit
>(
static_cast<ShaderStageBitType
>(a) ^
static_cast<ShaderStageBitType
>(b));
466inline Grindstone::GraphicsAPI::ShaderStageBit& operator|=(Grindstone::GraphicsAPI::ShaderStageBit& a,
const Grindstone::GraphicsAPI::ShaderStageBit b) {
471inline Grindstone::GraphicsAPI::ShaderStageBit& operator&=(Grindstone::GraphicsAPI::ShaderStageBit& a,
const Grindstone::GraphicsAPI::ShaderStageBit b) {
476inline Grindstone::GraphicsAPI::ShaderStageBit& operator^=(Grindstone::GraphicsAPI::ShaderStageBit& a,
const Grindstone::GraphicsAPI::ShaderStageBit b) {
481inline Grindstone::GraphicsAPI::ColorMask operator~(
const Grindstone::GraphicsAPI::ColorMask stages) {
482 using ColorMaskType = uint8_t;
483 return static_cast<Grindstone::GraphicsAPI::ColorMask
>(~static_cast<ColorMaskType>(stages));
486inline Grindstone::GraphicsAPI::ColorMask operator|(
const Grindstone::GraphicsAPI::ColorMask a,
const Grindstone::GraphicsAPI::ColorMask b) {
487 using ColorMaskType = uint8_t;
488 return static_cast<Grindstone::GraphicsAPI::ColorMask
>(
static_cast<ColorMaskType
>(a) |
static_cast<ColorMaskType
>(b));
491inline Grindstone::GraphicsAPI::ColorMask operator&(
const Grindstone::GraphicsAPI::ColorMask a,
const Grindstone::GraphicsAPI::ColorMask b) {
492 using ColorMaskType = uint8_t;
493 return static_cast<Grindstone::GraphicsAPI::ColorMask
>(
static_cast<ColorMaskType
>(a) &
static_cast<ColorMaskType
>(b));
496inline Grindstone::GraphicsAPI::ColorMask operator^(
const Grindstone::GraphicsAPI::ColorMask a,
const Grindstone::GraphicsAPI::ColorMask b) {
497 using ColorMaskType = uint8_t;
498 return static_cast<Grindstone::GraphicsAPI::ColorMask
>(
static_cast<ColorMaskType
>(a) ^
static_cast<ColorMaskType
>(b));
501inline Grindstone::GraphicsAPI::ColorMask& operator|=(Grindstone::GraphicsAPI::ColorMask& a,
const Grindstone::GraphicsAPI::ColorMask b) {
506inline Grindstone::GraphicsAPI::ColorMask& operator&=(Grindstone::GraphicsAPI::ColorMask& a,
const Grindstone::GraphicsAPI::ColorMask b) {
511inline Grindstone::GraphicsAPI::ColorMask& operator^=(Grindstone::GraphicsAPI::ColorMask& a,
const Grindstone::GraphicsAPI::ColorMask b) {
Definition Formats.hpp:244