Frontend: Add toggle for software rendering

This commit is contained in:
Connor McLaughlin
2019-10-27 21:52:10 +10:00
parent d1be9460b9
commit 12ce777e30
4 changed files with 41 additions and 12 deletions

View File

@ -1,14 +1,14 @@
#pragma once
#include "types.h"
enum class GPURenderer
{
HardwareOpenGL,
Software
};
struct Settings
{
enum class GPURenderer
{
HardwareOpenGL,
Software
};
Settings();
bool start_paused = false;