summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2021-05-18 00:25:19 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:31 +0200
commit4bad415bcab581c55770a16ef2e8fe1e6d105ff1 (patch)
tree18b56f314a2043a84dbc468a7978314b55e586a9
parentglasm: Add missing return value on move assignment (diff)
downloadyuzu-4bad415bcab581c55770a16ef2e8fe1e6d105ff1.tar
yuzu-4bad415bcab581c55770a16ef2e8fe1e6d105ff1.tar.gz
yuzu-4bad415bcab581c55770a16ef2e8fe1e6d105ff1.tar.bz2
yuzu-4bad415bcab581c55770a16ef2e8fe1e6d105ff1.tar.lz
yuzu-4bad415bcab581c55770a16ef2e8fe1e6d105ff1.tar.xz
yuzu-4bad415bcab581c55770a16ef2e8fe1e6d105ff1.tar.zst
yuzu-4bad415bcab581c55770a16ef2e8fe1e6d105ff1.zip
-rw-r--r--src/shader_recompiler/backend/glasm/emit_glasm_context_get_set.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/shader_recompiler/backend/glasm/emit_glasm_context_get_set.cpp b/src/shader_recompiler/backend/glasm/emit_glasm_context_get_set.cpp
index 9ce6c9214..ceadb3333 100644
--- a/src/shader_recompiler/backend/glasm/emit_glasm_context_get_set.cpp
+++ b/src/shader_recompiler/backend/glasm/emit_glasm_context_get_set.cpp
@@ -65,6 +65,12 @@ void EmitGetAttribute(EmitContext& ctx, IR::Inst& inst, IR::Attribute attr,
case IR::Attribute::PositionW:
ctx.Add("MOV.F {}.x,{}.position.{};", inst, ctx.stage_name, swizzle);
break;
+ case IR::Attribute::InstanceId:
+ ctx.Add("MOV.S {}.x,{}.instance;", inst, ctx.stage_name);
+ break;
+ case IR::Attribute::VertexId:
+ ctx.Add("MOV.S {}.x,{}.id;", inst, ctx.stage_name);
+ break;
default:
throw NotImplementedException("Get attribute {}", attr);
}