glsl: Move gl_Position/generic attribute initialization to EmitProlgue

This commit is contained in:
ameerj 2021-06-15 00:30:59 -04:00
parent bc50a9ef20
commit 52bd1d7788
2 changed files with 12 additions and 14 deletions

View file

@ -216,15 +216,6 @@ std::string EmitGLSL(const Profile& profile, const RuntimeInfo& runtime_info, IR
fmt::format("shared uint smem[{}];", Common::AlignUp(program.shared_memory_size, 4));
}
ctx.header += "void main(){\n";
if (program.stage == Stage::VertexA || program.stage == Stage::VertexB) {
ctx.header += "gl_Position = vec4(0.0f, 0.0f, 0.0f, 1.0f);";
// TODO: Properly resolve attribute issues
for (size_t index = 0; index < program.info.stores_generics.size() / 2; ++index) {
if (!program.info.stores_generics[index]) {
ctx.header += fmt::format("out_attr{}=vec4(0,0,0,1);", index);
}
}
}
DefineVariables(ctx, ctx.header);
if (ctx.uses_cc_carry) {
ctx.header += "uint carry;";