Android: Default backendMultithreading to false on android

This commit is contained in:
zackhow 2019-01-25 17:32:54 -05:00
commit 8a1eb34c38
2 changed files with 12 additions and 0 deletions

View file

@ -41,7 +41,12 @@ VideoConfig::VideoConfig()
backend_info.bSupportsBPTCTextures = false;
bEnableValidationLayer = false;
#if defined(ANDROID)
bBackendMultithreading = false;
#else
bBackendMultithreading = true;
#endif
}
void VideoConfig::Refresh()