- Survey: return more meaningful info for current OS and Vulkan version.

This commit is contained in:
Christoph Oelckers 2023-09-20 20:03:07 +02:00
commit 7f9df12431
2 changed files with 5 additions and 2 deletions

View file

@ -48,6 +48,7 @@ CVAR(Int, anonstats_port, 80, CVAR_NOSET)
CVAR(Int, sentstats_hwr_done, 0, CVAR_ARCHIVE | CVAR_GLOBALCONFIG | CVAR_NOSET)
std::pair<double, bool> gl_getInfo();
extern int vkversion;
@ -243,7 +244,7 @@ static int GetCoreInfo()
static int GetRenderInfo()
{
if (screen->Backend() == 0) return 1;
if (screen->Backend() == 2) return 1;
if (screen->Backend() == 1) return 4;
auto info = gl_getInfo();
if (!info.second)
@ -255,7 +256,7 @@ static int GetRenderInfo()
static int GetGLVersion()
{
if (screen->Backend() == 1) return 50;
if (screen->Backend() == 1) return vkversion;
auto info = gl_getInfo();
return int(info.first * 10);
}