From 4d25b92252361ad70f6418e14d28f6c221008917 Mon Sep 17 00:00:00 2001 From: yz70s Date: Sun, 18 Dec 2016 13:00:11 +0100 Subject: poly.h: add method triangles_drawn to get private member m_triangles (nw) --- src/devices/video/poly.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/devices/video/poly.h b/src/devices/video/poly.h index d67e570826f..72706e037e3 100644 --- a/src/devices/video/poly.h +++ b/src/devices/video/poly.h @@ -130,6 +130,7 @@ public: // getters running_machine &machine() const { return m_machine; } screen_device &screen() const { assert(m_screen != nullptr); return *m_screen; } + uint32_t triangles_drawn() const { return m_triangles; } // synchronization void wait(const char *debug_reason = "general"); -- cgit v1.2.3