mirror of
https://github.com/overte-org/overte.git
synced 2025-04-15 16:02:08 +02:00
Fix osx warning
This commit is contained in:
parent
154ccb8932
commit
cee897d6d3
1 changed files with 1 additions and 1 deletions
|
@ -775,7 +775,7 @@ Application::Application(int& argc, char** argv, QElapsedTimer& startupTimer) :
|
|||
{ "os_version", QSysInfo::productVersion() },
|
||||
{ "gpu_name", gpuIdent->getName() },
|
||||
{ "gpu_driver", gpuIdent->getDriver() },
|
||||
{ "gpu_memory", static_cast<int64_t>(gpuIdent->getMemory()) },
|
||||
{ "gpu_memory", QJsonValue(static_cast<int64_t>(gpuIdent->getMemory())) },
|
||||
{ "gl_version_int", glVersionToInteger(glContextData.value("version").toString()) },
|
||||
{ "gl_version", glContextData["version"] },
|
||||
{ "gl_vender", glContextData["vendor"] },
|
||||
|
|
Loading…
Reference in a new issue