diff --git a/pcsx2/ImGui/FullscreenUI.cpp b/pcsx2/ImGui/FullscreenUI.cpp index 0db1579b8a..c7b9402b60 100644 --- a/pcsx2/ImGui/FullscreenUI.cpp +++ b/pcsx2/ImGui/FullscreenUI.cpp @@ -4091,6 +4091,12 @@ void FullscreenUI::DrawGraphicsSettingsPage(SettingsInterface* bsi, bool show_ad FSUI_NSTR("Enabled (All Primitives)"), }; + static constexpr const char* s_gpu_clut_options[] = { + FSUI_NSTR("Disabled (Default)"), + FSUI_NSTR("Enabled (Exact Match)"), + FSUI_NSTR("Enabled (Check Inside Target)"), + }; + DrawIntListSetting(bsi, FSUI_CSTR("CPU Sprite Render Size"), FSUI_CSTR("Uses software renderer to draw texture decompression-like sprites."), "EmuCore/GS", "UserHacks_CPUSpriteRenderBW", 0, s_cpu_sprite_render_bw_options, std::size(s_cpu_sprite_render_bw_options), true); @@ -4100,6 +4106,9 @@ void FullscreenUI::DrawGraphicsSettingsPage(SettingsInterface* bsi, bool show_ad DrawIntListSetting(bsi, FSUI_CSTR("Software CLUT Render"), FSUI_CSTR("Uses software renderer to draw texture CLUT points/sprites."), "EmuCore/GS", "UserHacks_CPUCLUTRender", 0, s_cpu_clut_render_options, std::size(s_cpu_clut_render_options), true); + DrawIntListSetting(bsi, FSUI_CSTR("GPU Target CLUT"), + FSUI_CSTR("Try to detect when a game is drawing its own color palette and then renders it on the GPU with special handling."), "EmuCore/GS", "UserHacks_GPUTargetCLUTMode", + 0, s_gpu_clut_options, std::size(s_gpu_clut_options), true, 0, manual_hw_fixes); DrawIntSpinBoxSetting(bsi, FSUI_CSTR("Skip Draw Start"), FSUI_CSTR("Object range to skip drawing."), "EmuCore/GS", "UserHacks_SkipDraw_Start", 0, 0, 5000, 1); DrawIntSpinBoxSetting(bsi, FSUI_CSTR("Skip Draw End"), FSUI_CSTR("Object range to skip drawing."), "EmuCore/GS",