Home
last modified time | relevance | path

Searched refs:listDemos (Results 1 – 2 of 2) sorted by relevance

/external/jmonkeyengine/engine/src/android/jme3test/android/
DDemoMainActivity.java81 final List<DemoLaunchEntry> listDemos = new ArrayList<DemoLaunchEntry>(); in onCreate() local
83listDemos.add(new DemoLaunchEntry("jme3test.android.SimpleTexturedTest", "An field of textured box… in onCreate()
84listDemos.add(new DemoLaunchEntry("jme3test.android.TestSkyLoadingLagoon", "Sky box demonstration … in onCreate()
85listDemos.add(new DemoLaunchEntry("jme3test.android.TestSkyLoadingPrimitives", "Sky box demonstrat… in onCreate()
86listDemos.add(new DemoLaunchEntry("jme3test.android.TestBumpModel", "Shows a bump mapped well with… in onCreate()
87listDemos.add(new DemoLaunchEntry("jme3test.android.TestNormalMapping", "Shows a normal mapped sph… in onCreate()
88listDemos.add(new DemoLaunchEntry("jme3test.android.TestUnshadedModel", "Shows an unshaded model o… in onCreate()
89listDemos.add(new DemoLaunchEntry("jme3test.android.TestMovingParticle", "Demonstrates particle ef… in onCreate()
90listDemos.add(new DemoLaunchEntry("jme3test.android.TestAmbient", "Positional sound - You sit in a… in onCreate()
95listDemos.add(new DemoLaunchEntry("jme3test.android.TestMotionPath", "Shows cinematics - see a tea… in onCreate()
[all …]
DDemoLaunchAdapter.java22 private List<DemoLaunchEntry> listDemos; field in DemoLaunchAdapter
24 public DemoLaunchAdapter(Context context, List<DemoLaunchEntry> listDemos) { in DemoLaunchAdapter() argument
26 this.listDemos = listDemos; in DemoLaunchAdapter()
30 return listDemos.size(); in getCount()
34 return listDemos.get(position); in getItem()
42 DemoLaunchEntry entry = listDemos.get(position); in getView()