mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-23 22:35:45 +00:00
shader: Address feedback + clang format
This commit is contained in:
parent
a4e7a41e7f
commit
5b95114cd4
12 changed files with 22 additions and 24 deletions
|
@ -78,15 +78,15 @@ struct Block : boost::intrusive::set_base_hook<
|
|||
|
||||
Location begin;
|
||||
Location end;
|
||||
EndClass end_class;
|
||||
IR::Condition cond;
|
||||
EndClass end_class{};
|
||||
IR::Condition cond{};
|
||||
Stack stack;
|
||||
Block* branch_true;
|
||||
Block* branch_false;
|
||||
FunctionId function_call;
|
||||
Block* return_block;
|
||||
IR::Reg branch_reg;
|
||||
s32 branch_offset;
|
||||
Block* branch_true{};
|
||||
Block* branch_false{};
|
||||
FunctionId function_call{};
|
||||
Block* return_block{};
|
||||
IR::Reg branch_reg{};
|
||||
s32 branch_offset{};
|
||||
std::vector<IndirectBranch> indirect_branches;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue