Browse Source

glasm: Optimize EmitVertex into EMIT

nce_cpp
ReinUsesLisp 5 years ago
committed by ameerj
parent
commit
8db0554dc6
  1. 6
      src/shader_recompiler/backend/glasm/emit_glasm_not_implemented.cpp

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

@ -73,7 +73,11 @@ void EmitEpilogue(EmitContext& ctx) {
}
void EmitEmitVertex(EmitContext& ctx, ScalarS32 stream) {
ctx.Add("EMITS {};", 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) {

Loading…
Cancel
Save