File tree Expand file tree Collapse file tree 3 files changed +1
-5
lines changed Expand file tree Collapse file tree 3 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -4486,7 +4486,7 @@ namespace IGC
4486
4486
}
4487
4487
4488
4488
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) &&
4490
4490
(m_program->m_Platform ->preemptionSupported () || IGC_IS_FLAG_ENABLED (ForcePreemptionWA)) &&
4491
4491
IGC_IS_FLAG_ENABLED (EnablePreemption))
4492
4492
{
Original file line number Diff line number Diff line change @@ -132,7 +132,6 @@ enum class ShaderType
132
132
COMPUTE_SHADER,
133
133
OPENCL_SHADER,
134
134
RAYTRACING_SHADER,
135
- BINDLESS_SHADER,
136
135
END,
137
136
BEGIN = 0
138
137
};
@@ -160,7 +159,6 @@ static const char *ShaderTypeString[] = {
160
159
" CS" ,
161
160
" OCL" ,
162
161
" RAYDISPATCH" ,
163
- " BINDLESS" ,
164
162
" ERROR"
165
163
};
166
164
Original file line number Diff line number Diff line change @@ -66,8 +66,6 @@ const char* GetShaderTypeAcronym(ShaderType shaderType)
66
66
return " CS" ; break ;
67
67
case ShaderType::RAYTRACING_SHADER:
68
68
return " RT" ; break ;
69
- case ShaderType::BINDLESS_SHADER:
70
- return " RTMS" ; break ;
71
69
case ShaderType::UNKNOWN:
72
70
default :
73
71
IGC_ASSERT_MESSAGE (0 , " Unknown Shader Type" );
You can’t perform that action at this time.
0 commit comments