summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/shader_ir.cpp
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2018-12-23 05:33:47 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-01-15 21:54:52 +0100
commit027f443e699652fc30a849efaf8c12725a7b5729 (patch)
tree10f5c18227a20ce4cf9295107ee16e310e0d41da /src/video_core/shader/shader_ir.cpp
parentshader_decode: Implement TLDS (untested) (diff)
downloadyuzu-027f443e699652fc30a849efaf8c12725a7b5729.tar
yuzu-027f443e699652fc30a849efaf8c12725a7b5729.tar.gz
yuzu-027f443e699652fc30a849efaf8c12725a7b5729.tar.bz2
yuzu-027f443e699652fc30a849efaf8c12725a7b5729.tar.lz
yuzu-027f443e699652fc30a849efaf8c12725a7b5729.tar.xz
yuzu-027f443e699652fc30a849efaf8c12725a7b5729.tar.zst
yuzu-027f443e699652fc30a849efaf8c12725a7b5729.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/shader/shader_ir.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/shader/shader_ir.cpp b/src/video_core/shader/shader_ir.cpp
index 1f39dc6d0..1fc838d15 100644
--- a/src/video_core/shader/shader_ir.cpp
+++ b/src/video_core/shader/shader_ir.cpp
@@ -386,6 +386,8 @@ void ShaderIR::SetLocalMemory(BasicBlock& bb, Node address, Node value) {
return OperationCode::UBitwiseNot;
case OperationCode::IBitfieldInsert:
return OperationCode::UBitfieldInsert;
+ case OperationCode::IBitCount:
+ return OperationCode::UBitCount;
case OperationCode::LogicalILessThan:
return OperationCode::LogicalULessThan;
case OperationCode::LogicalIEqual: