summaryrefslogtreecommitdiffstats
path: root/source/slang/slang.cpp
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2024-06-12 13:49:18 -0700
committerGitHub <noreply@github.com>2024-06-12 13:49:18 -0700
commit0574dca987edb83325f50b435767fa0c61bae2b8 (patch)
tree82b159026dc58ced9271f1c23d134991e442c109 /source/slang/slang.cpp
parent085d1a603eac69f66b5357276ea07d1978832030 (diff)
Delete glsl_vulkan and glsl_vulkan_one_desc targets. (#4361)
Diffstat (limited to 'source/slang/slang.cpp')
-rw-r--r--source/slang/slang.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/source/slang/slang.cpp b/source/slang/slang.cpp
index e87aeb399..67492d9b2 100644
--- a/source/slang/slang.cpp
+++ b/source/slang/slang.cpp
@@ -926,8 +926,6 @@ Profile getEffectiveProfile(EntryPoint* entryPoint, TargetRequest* target)
break;
case CodeGenTarget::GLSL:
- case CodeGenTarget::GLSL_Vulkan:
- case CodeGenTarget::GLSL_Vulkan_OneDesc:
case CodeGenTarget::SPIRV:
case CodeGenTarget::SPIRVAssembly:
if(targetProfile.getFamily() != ProfileFamily::GLSL)
@@ -1706,8 +1704,6 @@ CapabilitySet TargetRequest::getTargetCaps()
switch(getTarget())
{
case CodeGenTarget::GLSL:
- case CodeGenTarget::GLSL_Vulkan:
- case CodeGenTarget::GLSL_Vulkan_OneDesc:
isGLSLTarget = true;
atoms.add(CapabilityName::glsl);
break;