commit 4f39a7d1cb7aec69677dfc652fad58ec64f55c80
Author: Leszek Koltunski <leszek@koltunski.pl>
Date:   Fri Jun 1 21:41:58 2018 +0100

    Actually display the new Mali app.

diff --git a/src/main/AndroidManifest.xml b/src/main/AndroidManifest.xml
index fa0374e..ca4596a 100644
--- a/src/main/AndroidManifest.xml
+++ b/src/main/AndroidManifest.xml
@@ -50,5 +50,6 @@
         <activity android:name=".stencil.StencilActivity"/>
         <activity android:name=".glow.GlowActivity"/>
         <activity android:name=".movingglow.MovingGlowActivity"/>
+        <activity android:name=".mali.MaliActivity"/>
     </application>
 </manifest>
diff --git a/src/main/java/org/distorted/examples/TableOfContents.java b/src/main/java/org/distorted/examples/TableOfContents.java
index 45f477d..746bfc2 100644
--- a/src/main/java/org/distorted/examples/TableOfContents.java
+++ b/src/main/java/org/distorted/examples/TableOfContents.java
@@ -34,7 +34,6 @@ import android.widget.AdapterView;
 import android.widget.AdapterView.OnItemClickListener;
 import android.widget.SimpleAdapter;
 
-import org.distorted.examples.aroundtheworld.AroundTheWorldActivity;
 import org.distorted.examples.monalisa.MonaLisaActivity;
 import org.distorted.examples.sink.SinkActivity;
 import org.distorted.examples.projection.ProjectionActivity;
@@ -60,6 +59,7 @@ import org.distorted.examples.plainmonalisa.PlainMonaLisaActivity;
 import org.distorted.examples.save.SaveActivity;
 import org.distorted.examples.flag.FlagActivity;
 import org.distorted.examples.wind.WindActivity;
+import org.distorted.examples.aroundtheworld.AroundTheWorldActivity;
 import org.distorted.examples.mirror.MirrorActivity;
 import org.distorted.examples.blur.BlurActivity;
 import org.distorted.examples.multiblur.MultiblurActivity;
@@ -69,6 +69,7 @@ import org.distorted.examples.postprocesstree.PostprocessTreeActivity;
 import org.distorted.examples.stencil.StencilActivity;
 import org.distorted.examples.glow.GlowActivity;
 import org.distorted.examples.movingglow.MovingGlowActivity;
+import org.distorted.examples.mali.MaliActivity;
 
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 
@@ -390,7 +391,7 @@ public class TableOfContents extends ListActivity
 
    {
       final Map<String, Object> item = new HashMap<>();
-      item.put(ITEM_IMAGE, R.drawable.icon_example_glow);
+      item.put(ITEM_IMAGE, R.drawable.icon_example_wip);
       item.put(ITEM_TITLE, (i+1)+". "+getText(R.string.example_glow));
       item.put(ITEM_SUBTITLE, getText(R.string.example_glow_subtitle));
       data.add(item);
@@ -399,13 +400,22 @@ public class TableOfContents extends ListActivity
 
    {
       final Map<String, Object> item = new HashMap<>();
-      item.put(ITEM_IMAGE, R.drawable.icon_example_movingglow);
+      item.put(ITEM_IMAGE, R.drawable.icon_example_wip);
       item.put(ITEM_TITLE, (i+1)+". "+getText(R.string.example_moving_glow));
       item.put(ITEM_SUBTITLE, getText(R.string.example_moving_glow_subtitle));
       data.add(item);
       activityMapping.put(i++, MovingGlowActivity.class);
    }
 
+   {
+      final Map<String, Object> item = new HashMap<>();
+      item.put(ITEM_IMAGE, R.drawable.icon_example_wip);
+      item.put(ITEM_TITLE, (i+1)+". "+getText(R.string.example_mali));
+      item.put(ITEM_SUBTITLE, getText(R.string.example_mali_subtitle));
+      data.add(item);
+      activityMapping.put(i++, MaliActivity.class);
+   }
+
    final SimpleAdapter dataAdapter = new SimpleAdapter(this, data, R.layout.toc_item, new String[] {ITEM_IMAGE, ITEM_TITLE, ITEM_SUBTITLE}, new int[] {R.id.Image, R.id.Title, R.id.SubTitle});
    setListAdapter(dataAdapter);  
       
diff --git a/src/main/res/drawable-hdpi/icon_example_glow.png b/src/main/res/drawable-hdpi/icon_example_glow.png
deleted file mode 100644
index 3ff1318..0000000
Binary files a/src/main/res/drawable-hdpi/icon_example_glow.png and /dev/null differ
diff --git a/src/main/res/drawable-hdpi/icon_example_movingglow.png b/src/main/res/drawable-hdpi/icon_example_movingglow.png
deleted file mode 100644
index 3ff1318..0000000
Binary files a/src/main/res/drawable-hdpi/icon_example_movingglow.png and /dev/null differ
diff --git a/src/main/res/values/strings.xml b/src/main/res/values/strings.xml
index 76dd458..da10ce1 100644
--- a/src/main/res/values/strings.xml
+++ b/src/main/res/values/strings.xml
@@ -167,6 +167,8 @@
     <string name="example_glow_subtitle">Leaf glowing with light.</string>
     <string name="example_moving_glow">Glow Effect</string>
     <string name="example_moving_glow_subtitle">See moving objects glowing with light.</string>
+    <string name="example_mali">Debug Mali GPU</string>
+    <string name="example_mali_subtitle">Self-contained app to try and debug issues on Mali GPU</string>
 
     <string name="example_movingeffects_toast">Click on \'RESET\' and define your path by touching the screen. Then click on one of the effects and see it move along your path.</string>
     <string name="example_rotate_toast">Rotate the scene by swiping the screen</string>
