mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-15 19:28:29 +12:00
enable triangle fan support
This commit is contained in:
parent
41ee2e75ae
commit
1412d1e70a
4 changed files with 13 additions and 4 deletions
|
@ -7,6 +7,8 @@ public:
|
|||
|
||||
// Per frame data
|
||||
uint32 m_renderPasses = 0;
|
||||
uint32 m_vertexBufferRestrides = 0;
|
||||
uint32 m_triangleFans = 0;
|
||||
|
||||
MetalPerformanceMonitor() = default;
|
||||
~MetalPerformanceMonitor() = default;
|
||||
|
@ -14,5 +16,7 @@ public:
|
|||
void ResetPerFrameData()
|
||||
{
|
||||
m_renderPasses = 0;
|
||||
m_vertexBufferRestrides = 0;
|
||||
m_triangleFans = 0;
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue