diff options
| author | 2021-04-10 02:32:55 -0400 | |
|---|---|---|
| committer | 2021-07-22 21:51:26 -0400 | |
| commit | 5bfcafa0a21619e8cd82c38ec51e260838f42042 (patch) | |
| tree | 05b34d95d2a32ef58ae76519610b002baa9f7adc /src/shader_recompiler/frontend/maxwell/control_flow.h | |
| parent | shader_recompiler,video_core: Cleanup some GCC and Clang errors (diff) | |
| download | yuzu-5bfcafa0a21619e8cd82c38ec51e260838f42042.tar.gz yuzu-5bfcafa0a21619e8cd82c38ec51e260838f42042.tar.xz yuzu-5bfcafa0a21619e8cd82c38ec51e260838f42042.zip | |
shader: Address feedback + clang format
Diffstat (limited to 'src/shader_recompiler/frontend/maxwell/control_flow.h')
| -rw-r--r-- | src/shader_recompiler/frontend/maxwell/control_flow.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/control_flow.h b/src/shader_recompiler/frontend/maxwell/control_flow.h index 9f570fbb5..89966b16a 100644 --- a/src/shader_recompiler/frontend/maxwell/control_flow.h +++ b/src/shader_recompiler/frontend/maxwell/control_flow.h | |||
| @@ -78,15 +78,15 @@ struct Block : boost::intrusive::set_base_hook< | |||
| 78 | 78 | ||
| 79 | Location begin; | 79 | Location begin; |
| 80 | Location end; | 80 | Location end; |
| 81 | EndClass end_class; | 81 | EndClass end_class{}; |
| 82 | IR::Condition cond; | 82 | IR::Condition cond{}; |
| 83 | Stack stack; | 83 | Stack stack; |
| 84 | Block* branch_true; | 84 | Block* branch_true{}; |
| 85 | Block* branch_false; | 85 | Block* branch_false{}; |
| 86 | FunctionId function_call; | 86 | FunctionId function_call{}; |
| 87 | Block* return_block; | 87 | Block* return_block{}; |
| 88 | IR::Reg branch_reg; | 88 | IR::Reg branch_reg{}; |
| 89 | s32 branch_offset; | 89 | s32 branch_offset{}; |
| 90 | std::vector<IndirectBranch> indirect_branches; | 90 | std::vector<IndirectBranch> indirect_branches; |
| 91 | }; | 91 | }; |
| 92 | 92 | ||