diff options
author | Nguyen Dac Nam <nam.kazt.91@gmail.com> | 2020-03-13 06:50:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-13 06:50:32 +0100 |
commit | 911c56ccef5ea9ce2cad6f92adff0b575b2a9bc6 (patch) | |
tree | 9b12f4513c791cba442bcf452b82b103aef5969d /src/video_core | |
parent | shader_decode: Reimplement BFE instructions (diff) | |
download | yuzu-911c56ccef5ea9ce2cad6f92adff0b575b2a9bc6.tar yuzu-911c56ccef5ea9ce2cad6f92adff0b575b2a9bc6.tar.gz yuzu-911c56ccef5ea9ce2cad6f92adff0b575b2a9bc6.tar.bz2 yuzu-911c56ccef5ea9ce2cad6f92adff0b575b2a9bc6.tar.lz yuzu-911c56ccef5ea9ce2cad6f92adff0b575b2a9bc6.tar.xz yuzu-911c56ccef5ea9ce2cad6f92adff0b575b2a9bc6.tar.zst yuzu-911c56ccef5ea9ce2cad6f92adff0b575b2a9bc6.zip |
Diffstat (limited to '')
-rw-r--r-- | src/video_core/shader/node_helper.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/shader/node_helper.cpp b/src/video_core/shader/node_helper.cpp index b3dcd291c..76c56abb5 100644 --- a/src/video_core/shader/node_helper.cpp +++ b/src/video_core/shader/node_helper.cpp @@ -68,6 +68,8 @@ OperationCode SignedToUnsignedCode(OperationCode operation_code, bool is_signed) return OperationCode::UBitwiseXor; case OperationCode::IBitwiseNot: return OperationCode::UBitwiseNot; + case OperationCode::IBitfieldExtract: + return OperationCode::UBitfieldExtract; case OperationCode::IBitfieldInsert: return OperationCode::UBitfieldInsert; case OperationCode::IBitCount: |