All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lti.civil.utility.FPSCounter Maven / Gradle / Ivy

package com.lti.civil.utility;

/**
 * Utility for measuring FPS, used for benchmarking and optimization. 
 * @author Ken Larson
 *
 */
public class FPSCounter 
{
	private int frames;
	private long start;

	public void reset()
	{
		start = 0;
		frames = 0;
	}
	
	public void nextFrame()
	{	
		if (start == 0)
			start = System.currentTimeMillis();
		
		++frames;
	}
	
	public int getNumFrames()
	{	return frames;
	}
	
	public double getFPS()
	{
		long now = System.currentTimeMillis();
		return 1000.0 * frames / (now - start);
	}
	
	public String toString()
	{
		return "FPS: " + getFPS();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy