소스 검색

glasm: Optimize EmitVertex into EMIT

ReinUsesLisp 5 년 전
부모
커밋
679e7146a7
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      src/shader_recompiler/backend/glasm/emit_glasm_not_implemented.cpp

+ 5 - 1
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) {