monitor clears

This commit is contained in:
Samuliak 2024-08-31 10:34:42 +02:00
parent 5eb30262a0
commit f9f6260580
2 changed files with 9 additions and 0 deletions

View file

@ -7,6 +7,7 @@ public:
// Per frame data
uint32 m_renderPasses = 0;
uint32 m_clears = 0;
uint32 m_vertexBufferRestrides = 0;
uint32 m_triangleFans = 0;
@ -16,6 +17,7 @@ public:
void ResetPerFrameData()
{
m_renderPasses = 0;
m_clears = 0;
m_vertexBufferRestrides = 0;
m_triangleFans = 0;
}