aboutsummaryrefslogtreecommitdiff
path: root/src/shader_recompiler/backend/glasm/emit_context.cpp
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2021-05-19 16:51:28 -0300
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-22 21:51:32 -0400
commitb60b3fa11389f9aca72bc00a4ab686b3bdb668f0 (patch)
tree19842e1c7f0c231d848de6ccb6c949ce29f4a829 /src/shader_recompiler/backend/glasm/emit_context.cpp
parent96962c1d3c638d7cb15c89dcc9933b03237c03f6 (diff)
glasm: Fix compute stage name
Diffstat (limited to 'src/shader_recompiler/backend/glasm/emit_context.cpp')
-rw-r--r--src/shader_recompiler/backend/glasm/emit_context.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/backend/glasm/emit_context.cpp b/src/shader_recompiler/backend/glasm/emit_context.cpp
index 395ac87f20..463930a186 100644
--- a/src/shader_recompiler/backend/glasm/emit_context.cpp
+++ b/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) {