reorder graphics tab, move speed to general

This commit is contained in:
Khangaroo 2019-08-09 22:08:18 -04:00 committed by James Rowe
parent da83430a68
commit 3534ad0835
10 changed files with 504 additions and 299 deletions

View file

@ -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;
};