mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2026-06-04 06:55:03 -06:00
changed readbacks mode to Relaxed,Precised (#4091)
This commit is contained in:
parent
dbf23a66af
commit
636efaf2b5
@ -25,8 +25,8 @@ enum HideCursorState : int { Never, Idle, Always };
|
|||||||
|
|
||||||
enum GpuReadbacksMode : int {
|
enum GpuReadbacksMode : int {
|
||||||
Disabled,
|
Disabled,
|
||||||
Low,
|
Relaxed,
|
||||||
High,
|
Precised,
|
||||||
};
|
};
|
||||||
|
|
||||||
void load(const std::filesystem::path& path, bool is_game_specific = false);
|
void load(const std::filesystem::path& path, bool is_game_specific = false);
|
||||||
|
|||||||
@ -95,7 +95,7 @@ public:
|
|||||||
}
|
}
|
||||||
if constexpr (type == Type::CPU) {
|
if constexpr (type == Type::CPU) {
|
||||||
UpdateProtection<!enable, false>();
|
UpdateProtection<!enable, false>();
|
||||||
} else if (Config::getReadbacksMode() == Config::GpuReadbacksMode::High) {
|
} else if (Config::getReadbacksMode() == Config::GpuReadbacksMode::Precised) {
|
||||||
UpdateProtection<enable, true>();
|
UpdateProtection<enable, true>();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user