reorder graphics tab, move speed to general
This commit is contained in:
parent
da83430a68
commit
3534ad0835
10 changed files with 504 additions and 299 deletions
|
@ -1,5 +1,8 @@
|
|||
#ifndef CONFIGURE_ENHANCEMENTS_H
|
||||
#define CONFIGURE_ENHANCEMENTS_H
|
||||
// Copyright 2019 Citra Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
|
@ -7,16 +10,20 @@ namespace Ui {
|
|||
class ConfigureEnhancements;
|
||||
}
|
||||
|
||||
class ConfigureEnhancements : public QWidget
|
||||
{
|
||||
class ConfigureEnhancements : public QWidget {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit ConfigureEnhancements(QWidget *parent = nullptr);
|
||||
explicit ConfigureEnhancements(QWidget* parent = nullptr);
|
||||
~ConfigureEnhancements();
|
||||
|
||||
private:
|
||||
Ui::ConfigureEnhancements *ui;
|
||||
};
|
||||
void ApplyConfiguration();
|
||||
void RetranslateUI();
|
||||
void SetConfiguration();
|
||||
|
||||
#endif // CONFIGURE_ENHANCEMENTS_H
|
||||
private:
|
||||
void updateShaders(bool anaglyph);
|
||||
|
||||
Ui::ConfigureEnhancements* ui;
|
||||
QColor bg_color;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue