Home
last modified time | relevance | path

Searched refs:GLActivityIntentKeys (Results 1 – 6 of 6) sorted by relevance

/cts/tests/openglperf2/src/android/opengl2/cts/reference/
DGLReferenceActivity.java18 import android.opengl2.cts.GLActivityIntentKeys;
41 mNumFrames = intent.getIntExtra(GLActivityIntentKeys.INTENT_EXTRA_NUM_FRAMES, 0); in onCreate()
42 mTimeout = intent.getIntExtra(GLActivityIntentKeys.INTENT_EXTRA_TIMEOUT, 0); in onCreate()
46 intent.putExtra(GLActivityIntentKeys.INTENT_EXTRA_NUM_FRAMES, mNumFrames); in onCreate()
47 intent.putExtra(GLActivityIntentKeys.INTENT_EXTRA_TIMEOUT, mTimeout); in onCreate()
DGLReferenceBenchmark.java17 import android.opengl2.cts.GLActivityIntentKeys;
44 intent.putExtra(GLActivityIntentKeys.INTENT_EXTRA_NUM_FRAMES, NUM_FRAMES); in testReferenceBenchmark()
45 intent.putExtra(GLActivityIntentKeys.INTENT_EXTRA_TIMEOUT, TIMEOUT); in testReferenceBenchmark()
DGLGameActivity.java25 import android.opengl2.cts.GLActivityIntentKeys;
57 mNumFrames = intent.getIntExtra(GLActivityIntentKeys.INTENT_EXTRA_NUM_FRAMES, 1000); in onCreate()
58 mTimeout = intent.getIntExtra(GLActivityIntentKeys.INTENT_EXTRA_TIMEOUT, 1000000); in onCreate()
/cts/tests/openglperf2/src/android/opengl2/cts/primitive/
DGLPrimitiveBenchmark.java17 import android.opengl2.cts.GLActivityIntentKeys;
125 intent.putExtra(GLActivityIntentKeys.INTENT_EXTRA_BENCHMARK_NAME, benchmarkName); in runBenchmark()
126 intent.putExtra(GLActivityIntentKeys.INTENT_EXTRA_OFFSCREEN, offscreen); in runBenchmark()
127 intent.putExtra(GLActivityIntentKeys.INTENT_EXTRA_NUM_FRAMES, numFrames); in runBenchmark()
128 intent.putExtra(GLActivityIntentKeys.INTENT_EXTRA_NUM_ITERATIONS, numIterations); in runBenchmark()
129 intent.putExtra(GLActivityIntentKeys.INTENT_EXTRA_TIMEOUT, timeout); in runBenchmark()
DGLPrimitiveActivity.java20 import android.opengl2.cts.GLActivityIntentKeys;
52 intent.getStringExtra(GLActivityIntentKeys.INTENT_EXTRA_BENCHMARK_NAME)); in onCreate()
53 mOffscreen = intent.getBooleanExtra(GLActivityIntentKeys.INTENT_EXTRA_OFFSCREEN, false); in onCreate()
54 mNumFrames = intent.getIntExtra(GLActivityIntentKeys.INTENT_EXTRA_NUM_FRAMES, 0); in onCreate()
55 mNumIterations = intent.getIntExtra(GLActivityIntentKeys.INTENT_EXTRA_NUM_ITERATIONS, 0); in onCreate()
56 mTimeout = intent.getIntExtra(GLActivityIntentKeys.INTENT_EXTRA_TIMEOUT, 0); in onCreate()
/cts/tests/openglperf2/src/android/opengl2/cts/
DGLActivityIntentKeys.java16 public class GLActivityIntentKeys { class