mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-05-11 19:55:41 -04:00
19 lines
232 B
C
19 lines
232 B
C
#pragma once
|
|
#include "types.h"
|
|
|
|
enum class GPUBackend
|
|
{
|
|
OpenGL
|
|
};
|
|
|
|
struct Settings
|
|
{
|
|
Settings();
|
|
|
|
GPUBackend gpu_backend = GPUBackend::OpenGL;
|
|
u32 gpu_resolution_scale = 1;
|
|
|
|
// TODO: Controllers, memory cards, etc.
|
|
};
|
|
|