2015-06-13 00:59:34 -04:00
|
|
|
package com.virtualapplications.play;
|
|
|
|
|
|
|
|
public class StatsManager
|
|
|
|
{
|
2017-07-05 10:17:37 -04:00
|
|
|
static
|
2015-06-13 00:59:34 -04:00
|
|
|
{
|
2017-05-28 16:24:26 -04:00
|
|
|
System.loadLibrary("Play");
|
2015-06-13 00:59:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public static native int getFrames();
|
2017-07-05 10:17:37 -04:00
|
|
|
|
2015-06-13 00:59:34 -04:00
|
|
|
public static native int getDrawCalls();
|
2017-07-05 10:17:37 -04:00
|
|
|
|
2015-06-13 00:59:34 -04:00
|
|
|
public static native void clearStats();
|
2017-07-05 10:17:37 -04:00
|
|
|
|
2015-09-06 21:33:17 +01:00
|
|
|
public static native boolean isProfiling();
|
2017-07-05 10:17:37 -04:00
|
|
|
|
2015-09-06 21:33:17 +01:00
|
|
|
public static native String getProfilingInfo();
|
2015-06-13 00:59:34 -04:00
|
|
|
}
|