report manual vertex fetch draws per frame

This commit is contained in:
Samuliak 2024-10-01 18:18:39 +02:00
parent f2096deddd
commit 50175fce66
2 changed files with 19 additions and 13 deletions

View file

@ -8,7 +8,8 @@ public:
// Per frame data
uint32 m_renderPasses = 0;
uint32 m_clears = 0;
uint32 m_vertexBufferRestrides = 0;
uint32 m_manualVertexFetchDraws = 0;
uint32 m_meshDraws = 0;
uint32 m_triangleFans = 0;
MetalPerformanceMonitor() = default;
@ -18,7 +19,8 @@ public:
{
m_renderPasses = 0;
m_clears = 0;
m_vertexBufferRestrides = 0;
m_manualVertexFetchDraws = 0;
m_meshDraws = 0;
m_triangleFans = 0;
}
};