only LM3 and revert android exclude

This commit is contained in:
JPikachu 2026-03-05 23:26:52 +00:00
parent 4b243b17df
commit 2a105c2869
2 changed files with 7 additions and 5 deletions

View file

@ -44,7 +44,8 @@ enum class GPUVendor {
}; };
enum class TitleID : std::uint64_t { enum class TitleID : std::uint64_t {
NinjaGaidenRagebound = 0x0100781020710000ULL NinjaGaidenRagebound = 0x0100781020710000ULL,
LuigisMansion3 = 0x0100DCA0064A6000ULL
}; };
struct EnvironmentInfo { struct EnvironmentInfo {

View file

@ -5,6 +5,7 @@
// SPDX-License-Identifier: GPL-2.0-or-later // SPDX-License-Identifier: GPL-2.0-or-later
#include "common/settings.h" #include "common/settings.h"
#include "core/game_settings.h"
#include "shader_recompiler/environment.h" #include "shader_recompiler/environment.h"
#include "shader_recompiler/frontend/ir/ir_emitter.h" #include "shader_recompiler/frontend/ir/ir_emitter.h"
#include "shader_recompiler/frontend/ir/modifiers.h" #include "shader_recompiler/frontend/ir/modifiers.h"
@ -344,10 +345,10 @@ void Visit(const IR::Program& program, IR::Block& block, IR::Inst& inst) {
} // Anonymous namespace } // Anonymous namespace
bool FragmentShaderNeedsRescalingPass(const IR::Program& program) { bool FragmentShaderNeedsRescalingPass(const IR::Program& program) {
#ifdef __ANDROID__ // Only apply for Luigi's Mansion 3
// Disable this workaround on Android to preserve performance if (Settings::values.program_id != static_cast<std::uint64_t>(Core::GameSettings::TitleID::LuigisMansion3)) {
return false; return false;
#endif }
if (program.stage != Stage::Fragment) return false; if (program.stage != Stage::Fragment) return false;