Explorar o código

glasm: Fix compute stage name

ReinUsesLisp %!s(int64=5) %!d(string=hai) anos
pai
achega
b60b3fa113
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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) {