Back to project page playn-perf.
The source code is released under:
PlayN Perf - performance tests for the PlayN game framework Copyright (c) 2013, Three Rings Design, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modifi...
If you think the Android project playn-perf listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
// // PlayN Performance Tests // http://github.com/threerings/playn-perf/blob/master/LICENSE /*from w w w . j av a2 s . c o m*/ package com.threerings.perf.android; import playn.android.GameActivity; import playn.core.PlayN; import com.threerings.perf.core.PerfTest; public class PerfTestActivity extends GameActivity { @Override public void main(){ PlayN.run(new PerfTest()); } }