|
|
@@ -6393,7 +6393,7 @@ namespace bgfx { namespace gl
|
|
|
tvm.printf(0, pos++, 0x8f, " Memory: %s (process) ", processMemoryUsed);
|
|
|
|
|
|
pos = 10;
|
|
|
- tvm.printf(10, pos++, 0x8e, " Frame CPU: %7.3f, % 7.3f \x1f, % 7.3f \x1e [ms] / % 6.2f FPS "
|
|
|
+ tvm.printf(10, pos++, 0x8e, " Frame: %7.3f, % 7.3f \x1f, % 7.3f \x1e [ms] / % 6.2f FPS "
|
|
|
, double(frameTime)*toMs
|
|
|
, double(min)*toMs
|
|
|
, double(max)*toMs
|
|
|
@@ -6404,7 +6404,7 @@ namespace bgfx { namespace gl
|
|
|
bx::snprintf(hmd, BX_COUNTOF(hmd), ", [%c] HMD ", hmdEnabled ? '\xfe' : ' ');
|
|
|
|
|
|
const uint32_t msaa = (m_resolution.m_flags&BGFX_RESET_MSAA_MASK)>>BGFX_RESET_MSAA_SHIFT;
|
|
|
- tvm.printf(10, pos++, 0x8e, " Reset flags: [%c] vsync, [%c] MSAAx%d%s, [%c] MaxAnisotropy "
|
|
|
+ tvm.printf(10, pos++, 0x8e, " Reset flags: [%c] vsync, [%c] MSAAx%d%s, [%c] MaxAnisotropy "
|
|
|
, !!(m_resolution.m_flags&BGFX_RESET_VSYNC) ? '\xfe' : ' '
|
|
|
, 0 != msaa ? '\xfe' : ' '
|
|
|
, 1<<msaa
|
|
|
@@ -6413,7 +6413,7 @@ namespace bgfx { namespace gl
|
|
|
);
|
|
|
|
|
|
double elapsedCpuMs = double(elapsed)*toMs;
|
|
|
- tvm.printf(10, pos++, 0x8e, " Submitted: %5d (draw %5d, compute %4d) / CPU %7.4f [ms] %c GPU %7.4f [ms] (latency %d) "
|
|
|
+ tvm.printf(10, pos++, 0x8e, " Submitted: %5d (draw %5d, compute %4d) / CPU %7.4f [ms] %c GPU %7.4f [ms] (latency %d) "
|
|
|
, _render->m_num
|
|
|
, statsKeyType[0]
|
|
|
, statsKeyType[1]
|
|
|
@@ -6427,7 +6427,7 @@ namespace bgfx { namespace gl
|
|
|
|
|
|
for (uint32_t ii = 0; ii < BX_COUNTOF(s_primInfo); ++ii)
|
|
|
{
|
|
|
- tvm.printf(10, pos++, 0x8e, " %9s: %7d (#inst: %5d), submitted: %7d "
|
|
|
+ tvm.printf(10, pos++, 0x8e, " %10s: %7d (#inst: %5d), submitted: %7d "
|
|
|
, s_primName[ii]
|
|
|
, statsNumPrimsRendered[ii]
|
|
|
, statsNumInstances[ii]
|
|
|
@@ -6527,12 +6527,10 @@ namespace bgfx { namespace gl
|
|
|
|
|
|
pos++;
|
|
|
double captureMs = double(captureElapsed)*toMs;
|
|
|
- tvm.printf(10, pos++, 0x8e, " Capture: %7.4f [ms] ", captureMs);
|
|
|
+ tvm.printf(10, pos++, 0x8e, " Capture: %7.4f [ms] ", captureMs);
|
|
|
|
|
|
uint8_t attr[2] = { 0x89, 0x8a };
|
|
|
uint8_t attrIndex = _render->m_waitSubmit < _render->m_waitRender;
|
|
|
-
|
|
|
- pos++;
|
|
|
tvm.printf(10, pos++, attr[attrIndex&1], " Submit wait: %7.4f [ms] ", double(_render->m_waitSubmit)*toMs);
|
|
|
tvm.printf(10, pos++, attr[(attrIndex+1)&1], " Render wait: %7.4f [ms] ", double(_render->m_waitRender)*toMs);
|
|
|
|