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