diff options
| author | 2019-10-05 21:52:20 +1000 | |
|---|---|---|
| committer | 2019-10-05 21:52:20 +1000 | |
| commit | 3728bbc22a9224ff75fff22487a47bcaaf6ac2be (patch) | |
| tree | 80809634787307002bf9e07b710a4aa968019f26 /src/common | |
| parent | Merge pull request #2917 from FernandoS27/fermi-deduction-2 (diff) | |
| parent | Shader_ir: Address feedback (diff) | |
| download | yuzu-3728bbc22a9224ff75fff22487a47bcaaf6ac2be.tar.gz yuzu-3728bbc22a9224ff75fff22487a47bcaaf6ac2be.tar.xz yuzu-3728bbc22a9224ff75fff22487a47bcaaf6ac2be.zip | |
Merge pull request #2888 from FernandoS27/decompiler2
Shader_IR: Implement a full control flow decompiler for the shader IR.
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index dfed8b51d..0ed96c0d4 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt | |||
| @@ -60,9 +60,15 @@ add_custom_command(OUTPUT scm_rev.cpp | |||
| 60 | "${VIDEO_CORE}/shader/decode/video.cpp" | 60 | "${VIDEO_CORE}/shader/decode/video.cpp" |
| 61 | "${VIDEO_CORE}/shader/decode/warp.cpp" | 61 | "${VIDEO_CORE}/shader/decode/warp.cpp" |
| 62 | "${VIDEO_CORE}/shader/decode/xmad.cpp" | 62 | "${VIDEO_CORE}/shader/decode/xmad.cpp" |
| 63 | "${VIDEO_CORE}/shader/ast.cpp" | ||
| 64 | "${VIDEO_CORE}/shader/ast.h" | ||
| 63 | "${VIDEO_CORE}/shader/control_flow.cpp" | 65 | "${VIDEO_CORE}/shader/control_flow.cpp" |
| 64 | "${VIDEO_CORE}/shader/control_flow.h" | 66 | "${VIDEO_CORE}/shader/control_flow.h" |
| 67 | "${VIDEO_CORE}/shader/compiler_settings.cpp" | ||
| 68 | "${VIDEO_CORE}/shader/compiler_settings.h" | ||
| 65 | "${VIDEO_CORE}/shader/decode.cpp" | 69 | "${VIDEO_CORE}/shader/decode.cpp" |
| 70 | "${VIDEO_CORE}/shader/expr.cpp" | ||
| 71 | "${VIDEO_CORE}/shader/expr.h" | ||
| 66 | "${VIDEO_CORE}/shader/node.h" | 72 | "${VIDEO_CORE}/shader/node.h" |
| 67 | "${VIDEO_CORE}/shader/node_helper.cpp" | 73 | "${VIDEO_CORE}/shader/node_helper.cpp" |
| 68 | "${VIDEO_CORE}/shader/node_helper.h" | 74 | "${VIDEO_CORE}/shader/node_helper.h" |