mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-02-19 21:42:59 +01:00
Fixing unused macro.
This commit is contained in:
@@ -64,6 +64,7 @@ namespace bgfx
|
||||
virtual void fatal(Fatal::Enum _code, const char* _str) BX_OVERRIDE
|
||||
{
|
||||
BX_TRACE("0x%08x: %s", _code, _str);
|
||||
BX_UNUSED(_code, _str);
|
||||
abort();
|
||||
}
|
||||
|
||||
|
||||
@@ -362,6 +362,7 @@ namespace bgfx
|
||||
fmt.m_supported = SUCCEEDED(m_d3d9->CheckDeviceFormat(m_adapter, m_deviceType, adapterFormat, fmt.m_usage, fmt.m_type, fmt.m_fmt) );
|
||||
const char* fourcc = (const char*)&fmt.m_fmt;
|
||||
BX_TRACE("\t%2d: %c%c%c%c %s", ii, fourcc[0], fourcc[1], fourcc[2], fourcc[3], fmt.m_supported ? "supported" : "");
|
||||
BX_UNUSED(fourcc);
|
||||
}
|
||||
|
||||
m_instancing = false
|
||||
|
||||
@@ -222,6 +222,7 @@ namespace bgfx
|
||||
, toString(_severity)
|
||||
, _message
|
||||
);
|
||||
BX_UNUSED(_source, _type, _id, _severity, _message);
|
||||
}
|
||||
#endif // BGFX_CONFIG_RENDERER_OPENGL
|
||||
|
||||
|
||||
Reference in New Issue
Block a user