MCPcopy Create free account
hub / github.com/Card-Forge/forge / startContinuousRendering

Method startContinuousRendering

forge-gui-mobile/src/forge/Forge.java:553–558  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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) {

Callers 5

openAdventureMethod · 0.95
onActivateMethod · 0.95
onActivateMethod · 0.95
showMethod · 0.95
startMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected