| 1797 | |
| 1798 | |
| 1799 | void Sample::PreRender() |
| 1800 | { |
| 1801 | // Limit FPS |
| 1802 | if (m_ui.ActualFPSLimiter() > 0) |
| 1803 | g_FPSLimiter.FramerateLimit(m_ui.ActualFPSLimiter()); |
| 1804 | |
| 1805 | korgi::Update(); |
| 1806 | |
| 1807 | m_captureScriptManager->PreRender(); |
| 1808 | } |
| 1809 | |
| 1810 | SimpleViewConstants FromPlanarViewConstants(PlanarViewConstants & view) |
| 1811 | { |
no test coverage detected