Try to use GPU video decoding plugins when possible

This commit is contained in:
Bruno
2021-01-01 10:09:17 +01:00
parent e0cd560dfb
commit b346403887
6 changed files with 59 additions and 4 deletions

View File

@@ -136,14 +136,16 @@ struct RenderConfig
int ratio;
int res;
float fading;
bool gpu_decoding;
RenderConfig() {
blit = false;
vsync = 1; // todo GUI selection
multisampling = 2; // todo GUI selection
vsync = 1;
multisampling = 2;
ratio = 3;
res = 1;
fading = 0.0;
gpu_decoding = true;
}
};