diff options
| author | 2021-02-03 16:43:04 -0300 | |
|---|---|---|
| committer | 2021-07-22 21:51:21 -0400 | |
| commit | d24a16045f0f6b0b873d5e3b5bf187c1a8c4343f (patch) | |
| tree | 0108a028b437bc59dfe7864f333cf4c50a46d3b5 /src/shader_recompiler/main.cpp | |
| parent | shader: SSA and dominance (diff) | |
| download | yuzu-d24a16045f0f6b0b873d5e3b5bf187c1a8c4343f.tar.gz yuzu-d24a16045f0f6b0b873d5e3b5bf187c1a8c4343f.tar.xz yuzu-d24a16045f0f6b0b873d5e3b5bf187c1a8c4343f.zip | |
shader: Initial instruction support
Diffstat (limited to 'src/shader_recompiler/main.cpp')
| -rw-r--r-- | src/shader_recompiler/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/shader_recompiler/main.cpp b/src/shader_recompiler/main.cpp index e3c9ad6e8..4022c6fe2 100644 --- a/src/shader_recompiler/main.cpp +++ b/src/shader_recompiler/main.cpp | |||
| @@ -51,7 +51,8 @@ void RunDatabase() { | |||
| 51 | int main() { | 51 | int main() { |
| 52 | // RunDatabase(); | 52 | // RunDatabase(); |
| 53 | 53 | ||
| 54 | FileEnvironment env{"D:\\Shaders\\Database\\test.bin"}; | 54 | // FileEnvironment env{"D:\\Shaders\\Database\\test.bin"}; |
| 55 | FileEnvironment env{"D:\\Shaders\\Database\\Oninaki\\CS8F146B41DB6BD826.bin"}; | ||
| 55 | auto cfg{std::make_unique<Flow::CFG>(env, 0)}; | 56 | auto cfg{std::make_unique<Flow::CFG>(env, 0)}; |
| 56 | // fmt::print(stdout, "{}\n", cfg->Dot()); | 57 | // fmt::print(stdout, "{}\n", cfg->Dot()); |
| 57 | 58 | ||