summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/backend/spirv/emit_spirv_context_get_set.cpp
diff options
context:
space:
mode:
authorvonchenplus <vonchenplus@gmail.com>2021-10-26 17:09:44 +0200
committervonchenplus <vonchenplus@gmail.com>2021-10-26 17:09:44 +0200
commit92bebecf4632fb5435d74a77d45bf56535eb85e4 (patch)
tree8a58ba7d65ebc9d5c3a38d4c3568d8bc021b204e /src/shader_recompiler/backend/spirv/emit_spirv_context_get_set.cpp
parentSupport gl_BackColor attribute (diff)
downloadyuzu-92bebecf4632fb5435d74a77d45bf56535eb85e4.tar
yuzu-92bebecf4632fb5435d74a77d45bf56535eb85e4.tar.gz
yuzu-92bebecf4632fb5435d74a77d45bf56535eb85e4.tar.bz2
yuzu-92bebecf4632fb5435d74a77d45bf56535eb85e4.tar.lz
yuzu-92bebecf4632fb5435d74a77d45bf56535eb85e4.tar.xz
yuzu-92bebecf4632fb5435d74a77d45bf56535eb85e4.tar.zst
yuzu-92bebecf4632fb5435d74a77d45bf56535eb85e4.zip
Diffstat (limited to '')
-rw-r--r--src/shader_recompiler/backend/spirv/emit_spirv_context_get_set.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/shader_recompiler/backend/spirv/emit_spirv_context_get_set.cpp b/src/shader_recompiler/backend/spirv/emit_spirv_context_get_set.cpp
index 899df6294..2da76493a 100644
--- a/src/shader_recompiler/backend/spirv/emit_spirv_context_get_set.cpp
+++ b/src/shader_recompiler/backend/spirv/emit_spirv_context_get_set.cpp
@@ -119,6 +119,14 @@ std::optional<OutAttr> OutputAttrPointer(EmitContext& ctx, IR::Attribute attr) {
const Id element_id{ctx.Const(element)};
return OutputAccessChain(ctx, ctx.output_f32, ctx.output_front_color, element_id);
}
+ case IR::Attribute::ColorFrontSpecularR:
+ case IR::Attribute::ColorFrontSpecularG:
+ case IR::Attribute::ColorFrontSpecularB:
+ case IR::Attribute::ColorFrontSpecularA: {
+ const u32 element{static_cast<u32>(attr) % 4};
+ const Id element_id{ctx.Const(element)};
+ return OutputAccessChain(ctx, ctx.output_f32, ctx.output_front_secondary_color, element_id);
+ }
case IR::Attribute::ColorBackDiffuseR:
case IR::Attribute::ColorBackDiffuseG:
case IR::Attribute::ColorBackDiffuseB:
@@ -371,6 +379,13 @@ Id EmitGetAttribute(EmitContext& ctx, IR::Attribute attr, Id vertex) {
return ctx.OpLoad(ctx.F32[1], AttrPointer(ctx, ctx.input_f32, vertex, ctx.input_front_color,
ctx.Const(element)));
}
+ case IR::Attribute::ColorFrontSpecularR:
+ case IR::Attribute::ColorFrontSpecularG:
+ case IR::Attribute::ColorFrontSpecularB:
+ case IR::Attribute::ColorFrontSpecularA: {
+ return ctx.OpLoad(ctx.F32[1], AttrPointer(ctx, ctx.input_f32, vertex, ctx.input_front_secondary_color,
+ ctx.Const(element)));
+ }
case IR::Attribute::ColorBackDiffuseR:
case IR::Attribute::ColorBackDiffuseG:
case IR::Attribute::ColorBackDiffuseB: