summaryrefslogtreecommitdiff
path: root/source/core/slang-render-api-util.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/core/slang-render-api-util.h')
-rw-r--r--source/core/slang-render-api-util.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/source/core/slang-render-api-util.h b/source/core/slang-render-api-util.h
index 41728e5f2..224fe6996 100644
--- a/source/core/slang-render-api-util.h
+++ b/source/core/slang-render-api-util.h
@@ -11,8 +11,7 @@ namespace Slang
enum class RenderApiType
{
Unknown = -1,
- OpenGl = 0,
- Vulkan,
+ Vulkan = 0,
D3D12,
D3D11,
Metal,
@@ -26,7 +25,6 @@ struct RenderApiFlag
{
enum Enum
{
- OpenGl = 1 << int(RenderApiType::OpenGl),
Vulkan = 1 << int(RenderApiType::Vulkan),
D3D12 = 1 << int(RenderApiType::D3D12),
D3D11 = 1 << int(RenderApiType::D3D11),