mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-15 19:28:29 +12:00
report manual vertex fetch draws per frame
This commit is contained in:
parent
f2096deddd
commit
50175fce66
2 changed files with 19 additions and 13 deletions
|
@ -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;
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue