mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-30 11:41:16 +00:00
Tgl::Device::GetDrawnTriangleCount does not exist (FIXME: INCORRECT FIX -> Tgl::Device should be updated instead)
This commit is contained in:
parent
bc1c10d3ab
commit
f07c1fc245
@ -195,7 +195,12 @@ double TglSurface::Render()
|
|||||||
|
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
{
|
{
|
||||||
|
#if 0
|
||||||
|
// FIXME: Tgl::Device::GetDrawnTriangleCount does not exist
|
||||||
unsigned long triangleCount = m_pDevice->GetDrawnTriangleCount();
|
unsigned long triangleCount = m_pDevice->GetDrawnTriangleCount();
|
||||||
|
#else
|
||||||
|
unsigned long triangleCount = 0;
|
||||||
|
#endif
|
||||||
|
|
||||||
m_triangleRateMeter.IncreaseOperationCount(triangleCount - m_triangleCount - 1);
|
m_triangleRateMeter.IncreaseOperationCount(triangleCount - m_triangleCount - 1);
|
||||||
m_triangleCount = triangleCount;
|
m_triangleCount = triangleCount;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user