Skip to content

Commit 6fc0896

Browse files
scottp101igcbot
authored andcommitted
remove BINDLESS_SHADER
remove BINDLESS_SHADER
1 parent 19c7d2c commit 6fc0896

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

IGC/Compiler/CISACodeGen/CISABuilder.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4486,7 +4486,7 @@ namespace IGC
44864486
}
44874487

44884488
if ((context->type == ShaderType::OPENCL_SHADER || context->type == ShaderType::COMPUTE_SHADER
4489-
|| context->type == ShaderType::RAYTRACING_SHADER || context->type == ShaderType::BINDLESS_SHADER) &&
4489+
|| context->type == ShaderType::RAYTRACING_SHADER) &&
44904490
(m_program->m_Platform->preemptionSupported() || IGC_IS_FLAG_ENABLED(ForcePreemptionWA)) &&
44914491
IGC_IS_FLAG_ENABLED(EnablePreemption))
44924492
{

IGC/common/Types.hpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,6 @@ enum class ShaderType
132132
COMPUTE_SHADER,
133133
OPENCL_SHADER,
134134
RAYTRACING_SHADER,
135-
BINDLESS_SHADER,
136135
END,
137136
BEGIN = 0
138137
};
@@ -160,7 +159,6 @@ static const char *ShaderTypeString[] = {
160159
"CS",
161160
"OCL",
162161
"RAYDISPATCH",
163-
"BINDLESS",
164162
"ERROR"
165163
};
166164

IGC/common/debug/Dump.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,6 @@ const char* GetShaderTypeAcronym(ShaderType shaderType)
6666
return "CS"; break;
6767
case ShaderType::RAYTRACING_SHADER:
6868
return "RT"; break;
69-
case ShaderType::BINDLESS_SHADER:
70-
return "RTMS"; break;
7169
case ShaderType::UNKNOWN:
7270
default:
7371
IGC_ASSERT_MESSAGE(0, "Unknown Shader Type");

0 commit comments

Comments
 (0)