mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-27 13:56:27 -05:00
2627241541
I noticed some of the code could be reduced to just passing the function an int, since I was doing the same thing over and over. Also clang-formats configure_graphics
66 lines
2.2 KiB
C++
66 lines
2.2 KiB
C++
// Copyright 2016 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <QCheckBox>
|
|
#include <QComboBox>
|
|
#include <QString>
|
|
#include "core/settings.h"
|
|
|
|
namespace ConfigurationShared {
|
|
|
|
constexpr int USE_GLOBAL_INDEX = 0;
|
|
constexpr int USE_GLOBAL_SEPARATOR_INDEX = 1;
|
|
constexpr int USE_GLOBAL_OFFSET = 2;
|
|
|
|
enum CheckState {
|
|
Off,
|
|
On,
|
|
Global,
|
|
Count,
|
|
};
|
|
|
|
struct Trackers {
|
|
CheckState use_frame_limit;
|
|
CheckState use_multi_core;
|
|
|
|
CheckState enable_audio_stretching;
|
|
|
|
CheckState use_disk_shader_cache;
|
|
CheckState use_asynchronous_gpu_emulation;
|
|
|
|
CheckState use_vsync;
|
|
CheckState use_assembly_shaders;
|
|
CheckState use_asynchronous_shaders;
|
|
CheckState use_fast_gpu_time;
|
|
CheckState force_30fps_mode;
|
|
} extern trackers;
|
|
|
|
// Global-aware apply and set functions
|
|
|
|
void ApplyPerGameSetting(Settings::Setting<bool>* setting, const QCheckBox* checkbox,
|
|
const CheckState& tracker);
|
|
void ApplyPerGameSetting(Settings::Setting<bool>* setting, const QCheckBox* checkbox);
|
|
void ApplyPerGameSetting(Settings::Setting<int>* setting, const QComboBox* combobox);
|
|
void ApplyPerGameSetting(Settings::Setting<Settings::RendererBackend>* setting,
|
|
const QComboBox* combobox);
|
|
void ApplyPerGameSetting(Settings::Setting<Settings::GPUAccuracy>* setting,
|
|
const QComboBox* combobox);
|
|
|
|
void SetPerGameSetting(QCheckBox* checkbox, const Settings::Setting<bool>* setting);
|
|
void SetPerGameSetting(QComboBox* combobox, const Settings::Setting<int>* setting);
|
|
void SetPerGameSetting(QComboBox* combobox,
|
|
const Settings::Setting<Settings::RendererBackend>* setting);
|
|
void SetPerGameSetting(QComboBox* combobox,
|
|
const Settings::Setting<Settings::GPUAccuracy>* setting);
|
|
|
|
void SetHighlight(QWidget* widget, const std::string& name, bool highlighted);
|
|
void SetColoredTristate(QCheckBox* checkbox, const std::string& name, const Settings::Setting<bool>& setting,
|
|
ConfigurationShared::CheckState& tracker);
|
|
|
|
void InsertGlobalItem(QComboBox* combobox);
|
|
void InsertGlobalItem(QComboBox* combobox, int global_index);
|
|
|
|
} // namespace ConfigurationShared
|