|
|
@@ -4490,15 +4490,11 @@ BX_UNUSED(presentMin, presentMax);
|
|
|
// , double(presentMax)*toMs
|
|
|
// );
|
|
|
|
|
|
- char hmd[16];
|
|
|
- bx::snprintf(hmd, BX_COUNTOF(hmd), ", [%c] HMD ", hmdEnabled ? '\xfe' : ' ');
|
|
|
-
|
|
|
const uint32_t msaa = (m_resolution.reset&BGFX_RESET_MSAA_MASK)>>BGFX_RESET_MSAA_SHIFT;
|
|
|
- tvm.printf(10, pos++, 0x8b, " Reset flags: [%c] vsync, [%c] MSAAx%d%s, [%c] MaxAnisotropy "
|
|
|
+ tvm.printf(10, pos++, 0x8b, " Reset flags: [%c] vsync, [%c] MSAAx%d, [%c] MaxAnisotropy "
|
|
|
, !!(m_resolution.reset&BGFX_RESET_VSYNC) ? '\xfe' : ' '
|
|
|
, 0 != msaa ? '\xfe' : ' '
|
|
|
, 1<<msaa
|
|
|
- , ", no-HMD "
|
|
|
, !!(m_resolution.reset&BGFX_RESET_MAXANISOTROPY) ? '\xfe' : ' '
|
|
|
);
|
|
|
|