Skip to content
Snippets Groups Projects
Commit 1c92affc authored by Simeon Hermann's avatar Simeon Hermann
Browse files

[#76] try to implement a bitmask for the shader stages

parent d0c5ea10
No related branches found
No related tags found
1 merge request!71Resolve "Descriptor in multiple shader stages"
Pipeline #25901 passed
#pragma once
namespace vkcv {
enum class ShaderStage
enum class ShaderStage : uint32_t
{
VERTEX,
TESS_CONTROL,
TESS_EVAL,
GEOMETRY,
FRAGMENT,
COMPUTE
VERTEX = 0x00000001,
TESS_CONTROL = 0x00000002,
TESS_EVAL = 0x00000004,
GEOMETRY = 0x00000008,
FRAGMENT = 0x00000016,
COMPUTE = 0x00000032
};
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment