File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ class IGPUGraphicsPipeline : public IGPUPipeline<asset::IGraphicsPipeline<const
69
69
70
70
inline core::bitflag<hlsl::ShaderStage> getRequiredSubgroupStages () const
71
71
{
72
- core::bitflag<hlsl::ShaderStage> stages;
72
+ core::bitflag<hlsl::ShaderStage> stages = {} ;
73
73
auto processSpecInfo = [&](const SShaderSpecInfo& spec, hlsl::ShaderStage stage)
74
74
{
75
75
if (spec.shader && spec.requiredSubgroupSize >= SUBGROUP_SIZE::REQUIRE_4) {
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ class IGPURayTracingPipeline : public IGPUPipeline<asset::IRayTracingPipeline<c
146
146
147
147
inline core::bitflag<hlsl::ShaderStage> getRequiredSubgroupStages () const
148
148
{
149
- core::bitflag<hlsl::ShaderStage> stages;
149
+ core::bitflag<hlsl::ShaderStage> stages = {} ;
150
150
auto processSpecInfo = [&](const SShaderSpecInfo& spec, hlsl::ShaderStage stage)
151
151
{
152
152
if (spec.shader && spec.requiredSubgroupSize >= SUBGROUP_SIZE::REQUIRE_4) {
You can’t perform that action at this time.
0 commit comments