()
| 551 | } |
| 552 | |
| 553 | public static void startContinuousRendering() { |
| 554 | if (++continuousRenderingCount == 1) { |
| 555 | //only set continuous rendering to true if needed |
| 556 | Gdx.graphics.setContinuousRendering(true); |
| 557 | } |
| 558 | } |
| 559 | |
| 560 | public static void stopContinuousRendering() { |
| 561 | if (continuousRenderingCount > 0 && --continuousRenderingCount == 0) { |
no outgoing calls
no test coverage detected