mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 05:15:47 +00:00
shader: Initial implementation of an AST
This commit is contained in:
parent
5ee600cf64
commit
c4d75e4b78
33 changed files with 1347 additions and 591 deletions
|
@ -26,7 +26,7 @@ public:
|
|||
explicit Condition(Pred pred_, bool pred_negated_ = false) noexcept
|
||||
: Condition(FlowTest::T, pred_, pred_negated_) {}
|
||||
|
||||
Condition(bool value) : Condition(Pred::PT, !value) {}
|
||||
explicit Condition(bool value) : Condition(Pred::PT, !value) {}
|
||||
|
||||
auto operator<=>(const Condition&) const noexcept = default;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue