migrat, amb ajuda de claude, a sdl3gpu (postfx i crtpi) igual que el JDD
This commit is contained in:
@@ -366,19 +366,20 @@ void ServiceMenu::initializeOptions() {
|
||||
options_.push_back(std::make_unique<BoolOption>(
|
||||
Lang::getText("[SERVICE_MENU] POSTFX"),
|
||||
SettingsGroup::VIDEO,
|
||||
&Options::video.postfx));
|
||||
&Options::video.shader.enabled));
|
||||
|
||||
options_.push_back(std::make_unique<IntOption>(
|
||||
Lang::getText("[SERVICE_MENU] POSTFX_PRESET"),
|
||||
SettingsGroup::VIDEO,
|
||||
&Options::current_postfx_preset,
|
||||
0, static_cast<int>(Options::postfx_presets.size()) - 1, 1));
|
||||
&Options::video.shader.current_postfx_preset,
|
||||
0,
|
||||
static_cast<int>(Options::postfx_presets.size()) - 1,
|
||||
1));
|
||||
|
||||
options_.push_back(std::make_unique<IntOption>(
|
||||
options_.push_back(std::make_unique<BoolOption>(
|
||||
Lang::getText("[SERVICE_MENU] SUPERSAMPLING"),
|
||||
SettingsGroup::VIDEO,
|
||||
&Options::video.supersampling,
|
||||
1, 3, 1));
|
||||
&Options::video.supersampling.enabled));
|
||||
|
||||
options_.push_back(std::make_unique<BoolOption>(
|
||||
Lang::getText("[SERVICE_MENU] VSYNC"),
|
||||
|
||||
Reference in New Issue
Block a user