summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2020-04-04 03:46:07 -0300
committerGravatar ReinUsesLisp2020-04-04 03:46:07 -0300
commit60106531b4ebf887edfa0964618982846dc9547a (patch)
tree99afcc885541dd73f921b0c25421235b4a5f0eef
parentshader_bytecode: Rename MOV_SYS to S2R (diff)
downloadyuzu-60106531b4ebf887edfa0964618982846dc9547a.tar.gz
yuzu-60106531b4ebf887edfa0964618982846dc9547a.tar.xz
yuzu-60106531b4ebf887edfa0964618982846dc9547a.zip
shader/other: Add error message for some S2R registers
-rw-r--r--src/video_core/shader/decode/other.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/video_core/shader/decode/other.cpp b/src/video_core/shader/decode/other.cpp
index 94e39c125..8262d4d4b 100644
--- a/src/video_core/shader/decode/other.cpp
+++ b/src/video_core/shader/decode/other.cpp
@@ -79,6 +79,12 @@ u32 ShaderIR::DecodeOther(NodeBlock& bb, u32 pc) {
79 case SystemVariable::InvocationInfo: 79 case SystemVariable::InvocationInfo:
80 LOG_WARNING(HW_GPU, "S2R instruction with InvocationInfo is incomplete"); 80 LOG_WARNING(HW_GPU, "S2R instruction with InvocationInfo is incomplete");
81 return Immediate(0U); 81 return Immediate(0U);
82 case SystemVariable::WscaleFactorXY:
83 UNIMPLEMENTED_MSG("S2R WscaleFactorXY is not implemented");
84 return Immediate(0U);
85 case SystemVariable::WscaleFactorZ:
86 UNIMPLEMENTED_MSG("S2R WscaleFactorZ is not implemented");
87 return Immediate(0U);
82 case SystemVariable::Tid: { 88 case SystemVariable::Tid: {
83 Node value = Immediate(0); 89 Node value = Immediate(0);
84 value = BitfieldInsert(value, Operation(OperationCode::LocalInvocationIdX), 0, 9); 90 value = BitfieldInsert(value, Operation(OperationCode::LocalInvocationIdX), 0, 9);