emit_glsl_warp: Fix shfl_in_bounds conditional

This commit is contained in:
Ameer J
2023-10-22 00:38:30 -04:00
parent 8becf13e8b
commit cfe73af6f2
2 changed files with 9 additions and 4 deletions

View File

@ -242,6 +242,7 @@ std::string EmitGLSL(const Profile& profile, const RuntimeInfo& runtime_info, IR
}
if (program.info.uses_subgroup_shuffles) {
ctx.header += "bool shfl_in_bounds;";
ctx.header += "uint shfl_result;";
}
ctx.code.insert(0, ctx.header);
ctx.code += '}';