diff options
| author | 2019-07-18 10:09:26 -0400 | |
|---|---|---|
| committer | 2019-07-18 10:09:26 -0400 | |
| commit | 5a06e338598d3893bc587de303d3d25526180d14 (patch) | |
| tree | ddbc03806800794794496897463e380769f98237 /src/video_core/shader | |
| parent | GPU: Add missing puller methods. (diff) | |
| download | yuzu-5a06e338598d3893bc587de303d3d25526180d14.tar.gz yuzu-5a06e338598d3893bc587de303d3d25526180d14.tar.xz yuzu-5a06e338598d3893bc587de303d3d25526180d14.zip | |
Shader_Ir: correct clang format
Diffstat (limited to 'src/video_core/shader')
| -rw-r--r-- | src/video_core/shader/decode/ffma.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/shader/decode/ffma.cpp b/src/video_core/shader/decode/ffma.cpp index a39283a9c..cb3a9cfc1 100644 --- a/src/video_core/shader/decode/ffma.cpp +++ b/src/video_core/shader/decode/ffma.cpp | |||
| @@ -19,9 +19,9 @@ u32 ShaderIR::DecodeFfma(NodeBlock& bb, u32 pc) { | |||
| 19 | 19 | ||
| 20 | UNIMPLEMENTED_IF_MSG(instr.ffma.cc != 0, "FFMA cc not implemented"); | 20 | UNIMPLEMENTED_IF_MSG(instr.ffma.cc != 0, "FFMA cc not implemented"); |
| 21 | DEBUG_ASSERT_MSG(instr.ffma.tab5980_0 == 1, "FFMA tab5980_0({}) not implemented", | 21 | DEBUG_ASSERT_MSG(instr.ffma.tab5980_0 == 1, "FFMA tab5980_0({}) not implemented", |
| 22 | instr.ffma.tab5980_0.Value()); // Seems to be 1 by default based on SMO | 22 | instr.ffma.tab5980_0.Value()); // Seems to be 1 by default based on SMO |
| 23 | DEBUG_ASSERT_MSG(instr.ffma.tab5980_1 == 0, "FFMA tab5980_1({}) not implemented", | 23 | DEBUG_ASSERT_MSG(instr.ffma.tab5980_1 == 0, "FFMA tab5980_1({}) not implemented", |
| 24 | instr.ffma.tab5980_1.Value()); | 24 | instr.ffma.tab5980_1.Value()); |
| 25 | 25 | ||
| 26 | const Node op_a = GetRegister(instr.gpr8); | 26 | const Node op_a = GetRegister(instr.gpr8); |
| 27 | 27 | ||