glasm: Fix compute stage name

This commit is contained in:
ReinUsesLisp 2021-05-19 16:51:28 -03:00 committed by ameerj
parent 96962c1d3c
commit b60b3fa113

View file

@ -57,7 +57,7 @@ EmitContext::EmitContext(IR::Program& program, Bindings& bindings, const Profile
stage_name = "fragment";
break;
case Stage::Compute:
stage_name = "compute";
stage_name = "invocation";
break;
}
for (size_t index = 0; index < program.info.input_generics.size(); ++index) {