Example usage for com.badlogic.gdx.utils PerformanceCounter stop

List of usage examples for com.badlogic.gdx.utils PerformanceCounter stop

Introduction

In this page you can find the example usage for com.badlogic.gdx.utils PerformanceCounter stop.

Prototype

public void stop() 

Source Link

Document

Stop counting, call this method right after you performed the task you want to keep track of.

Usage

From source file:com.ore.infinium.World.java

License:Open Source License

private void generateWorld() {
    PerformanceCounter counter = new PerformanceCounter("test");
    counter.start();/*from  w w  w  .j a  va  2  s .c  o m*/

    generateOres();
    generateGrassTiles();
    transitionTiles();

    counter.stop();
    String s = String.format("total world gen took (incl transitioning, etc): %s seconds", counter.current);
    Gdx.app.log("", s);

}