mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
Fixed warning.
This commit is contained in:
parent
3b66dfa5e8
commit
a91232015f
1 changed files with 3 additions and 3 deletions
|
@ -178,13 +178,13 @@ EGL_IMPORT
|
||||||
|
|
||||||
BX_TRACE("EGL info:");
|
BX_TRACE("EGL info:");
|
||||||
const char* clientApis = eglQueryString(m_display, EGL_CLIENT_APIS);
|
const char* clientApis = eglQueryString(m_display, EGL_CLIENT_APIS);
|
||||||
BX_TRACE(" APIs: %s", clientApis);
|
BX_TRACE(" APIs: %s", clientApis); BX_UNUSED(clientApis);
|
||||||
|
|
||||||
const char* vendor = eglQueryString(m_display, EGL_VENDOR);
|
const char* vendor = eglQueryString(m_display, EGL_VENDOR);
|
||||||
BX_TRACE(" Vendor: %s", vendor);
|
BX_TRACE(" Vendor: %s", vendor); BX_UNUSED(vendor);
|
||||||
|
|
||||||
const char* version = eglQueryString(m_display, EGL_VERSION);
|
const char* version = eglQueryString(m_display, EGL_VERSION);
|
||||||
BX_TRACE("Version: %s", version);
|
BX_TRACE("Version: %s", version); BX_UNUSED(version);
|
||||||
|
|
||||||
const char* extensions = eglQueryString(m_display, EGL_EXTENSIONS);
|
const char* extensions = eglQueryString(m_display, EGL_EXTENSIONS);
|
||||||
BX_TRACE("Supported EGL extensions:");
|
BX_TRACE("Supported EGL extensions:");
|
||||||
|
|
Loading…
Reference in a new issue