mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-08 11:29:59 +00:00
dc06e11a7b
Decouples the CPU debugging mode from the enumeration to its own boolean. After this, it moves the CPU Debugging tab over to a sub tab underneath the Debug tab in the configuration UI.
46 lines
1 KiB
C++
46 lines
1 KiB
C++
// Copyright 2020 yuzu Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
#include <QWidget>
|
|
#include "common/settings.h"
|
|
|
|
namespace ConfigurationShared {
|
|
enum class CheckState;
|
|
}
|
|
|
|
namespace Ui {
|
|
class ConfigureCpu;
|
|
}
|
|
|
|
class ConfigureCpu : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ConfigureCpu(QWidget* parent = nullptr);
|
|
~ConfigureCpu() override;
|
|
|
|
void ApplyConfiguration();
|
|
|
|
private:
|
|
void changeEvent(QEvent* event) override;
|
|
void RetranslateUI();
|
|
|
|
void UpdateGroup(int index);
|
|
|
|
void SetConfiguration();
|
|
|
|
void SetupPerGameUI();
|
|
|
|
std::unique_ptr<Ui::ConfigureCpu> ui;
|
|
|
|
ConfigurationShared::CheckState cpuopt_unsafe_unfuse_fma;
|
|
ConfigurationShared::CheckState cpuopt_unsafe_reduce_fp_error;
|
|
ConfigurationShared::CheckState cpuopt_unsafe_ignore_standard_fpcr;
|
|
ConfigurationShared::CheckState cpuopt_unsafe_inaccurate_nan;
|
|
ConfigurationShared::CheckState cpuopt_unsafe_fastmem_check;
|
|
};
|