mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-16 07:17:56 -05:00
Shader_IR: allow else derivation to be optional.
This commit is contained in:
committed by
FernandoS27
parent
ca9901867e
commit
2e9a810423
@ -298,7 +298,7 @@ private:
|
||||
|
||||
class ASTManager final {
|
||||
public:
|
||||
ASTManager(bool full_decompile);
|
||||
ASTManager(bool full_decompile, bool disable_else_derivation);
|
||||
~ASTManager();
|
||||
|
||||
ASTManager(const ASTManager& o) = delete;
|
||||
@ -378,6 +378,7 @@ private:
|
||||
}
|
||||
|
||||
bool full_decompile{};
|
||||
bool disable_else_derivation{};
|
||||
std::unordered_map<u32, u32> labels_map{};
|
||||
u32 labels_count{};
|
||||
std::vector<ASTNode> labels{};
|
||||
|
Reference in New Issue
Block a user