Browse Source

glasm: Optimize EmitVertex into EMIT

pull/15/merge
ReinUsesLisp 5 years ago
committed by ameerj
parent
commit
679e7146a7
  1. 4
      src/shader_recompiler/backend/glasm/emit_glasm_not_implemented.cpp

4
src/shader_recompiler/backend/glasm/emit_glasm_not_implemented.cpp

@ -73,8 +73,12 @@ void EmitEpilogue(EmitContext& ctx) {
}
void EmitEmitVertex(EmitContext& ctx, ScalarS32 stream) {
if (stream.type == Type::U32 && stream.imm_u32) {
ctx.Add("EMIT;");
} else {
ctx.Add("EMITS {};", stream);
}
}
void EmitEndPrimitive(EmitContext& ctx, const IR::Value& stream) {
if (!stream.IsImmediate()) {

Loading…
Cancel
Save