[Qt] Be a little less OpenGL-hyperfocused

This commit is contained in:
wheremyfoodat 2023-10-01 16:49:30 +03:00
parent c10a3e7160
commit fbfea624cb
2 changed files with 20 additions and 3 deletions

View file

@ -30,6 +30,11 @@ class MainWindow : public QMainWindow {
Theme currentTheme;
void setTheme(Theme theme);
void swapEmuBuffer();
// Tracks whether we are using an OpenGL-backed renderer or a Vulkan-backed renderer
bool usingGL = false;
bool usingVk = false;
public:
MainWindow(QApplication* app, QWidget* parent = nullptr);