diff options
author | Mat M <mathew1800@gmail.com> | 2020-04-13 16:15:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-13 16:15:12 +0200 |
commit | d37d89943123edc386cfec66773374772e661473 (patch) | |
tree | 83e82d5d6b9273028b93fe0a065fc401613700e5 | |
parent | Merge pull request #3633 from ReinUsesLisp/clean-texdec (diff) | |
parent | gl_shader_decompiler: Implement merges with bitfieldInsert (diff) | |
download | yuzu-d37d89943123edc386cfec66773374772e661473.tar yuzu-d37d89943123edc386cfec66773374772e661473.tar.gz yuzu-d37d89943123edc386cfec66773374772e661473.tar.bz2 yuzu-d37d89943123edc386cfec66773374772e661473.tar.lz yuzu-d37d89943123edc386cfec66773374772e661473.tar.xz yuzu-d37d89943123edc386cfec66773374772e661473.tar.zst yuzu-d37d89943123edc386cfec66773374772e661473.zip |
Diffstat (limited to '')
-rw-r--r-- | src/video_core/renderer_opengl/gl_shader_decompiler.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp index 160ae4340..1f1f01313 100644 --- a/src/video_core/renderer_opengl/gl_shader_decompiler.cpp +++ b/src/video_core/renderer_opengl/gl_shader_decompiler.cpp @@ -1819,15 +1819,15 @@ private: } Expression HMergeH0(Operation operation) { - std::string dest = VisitOperand(operation, 0).AsUint(); - std::string src = VisitOperand(operation, 1).AsUint(); - return {fmt::format("(({} & 0x0000FFFFU) | ({} & 0xFFFF0000U))", src, dest), Type::Uint}; + const std::string dest = VisitOperand(operation, 0).AsUint(); + const std::string src = VisitOperand(operation, 1).AsUint(); + return {fmt::format("bitfieldInsert({}, {}, 0, 16)", dest, src), Type::Uint}; } Expression HMergeH1(Operation operation) { - std::string dest = VisitOperand(operation, 0).AsUint(); - std::string src = VisitOperand(operation, 1).AsUint(); - return {fmt::format("(({} & 0x0000FFFFU) | ({} & 0xFFFF0000U))", dest, src), Type::Uint}; + const std::string dest = VisitOperand(operation, 0).AsUint(); + const std::string src = VisitOperand(operation, 1).AsUint(); + return {fmt::format("bitfieldInsert({}, {}, 16, 16)", dest, src), Type::Uint}; } Expression HPack2(Operation operation) { |