浏览代码

glasm: Fix compute stage name

ReinUsesLisp 5 年之前
父节点
当前提交
b60b3fa113
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/shader_recompiler/backend/glasm/emit_context.cpp

+ 1 - 1
src/shader_recompiler/backend/glasm/emit_context.cpp

@@ -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) {