From dfd0a293ad55b2bcc366eccbd4365b2c6c3744e2 Mon Sep 17 00:00:00 2001 From: saschawillems Date: Fri, 1 Dec 2017 22:21:30 +0100 Subject: [PATCH] Added viewport array sample android build files --- android/build-all.py | 1 + android/uninstall-all.py | 1 + android/viewportarray/.gitignore | 10 ++++++++ android/viewportarray/AndroidManifest.xml | 28 +++++++++++++++++++++++ android/viewportarray/example.json | 11 +++++++++ 5 files changed, 51 insertions(+) create mode 100644 android/viewportarray/.gitignore create mode 100644 android/viewportarray/AndroidManifest.xml create mode 100644 android/viewportarray/example.json diff --git a/android/build-all.py b/android/build-all.py index a1299340..2d06ee13 100755 --- a/android/build-all.py +++ b/android/build-all.py @@ -60,6 +60,7 @@ EXAMPLES = [ "texturecubemap", "texturemipmapgen", "triangle", + "viewportarray", "vulkanscene" ] diff --git a/android/uninstall-all.py b/android/uninstall-all.py index c2373c57..3e731986 100755 --- a/android/uninstall-all.py +++ b/android/uninstall-all.py @@ -58,6 +58,7 @@ APP_NAMES = [ "de.saschawillems.vulkanTexturecubemap", "de.saschawillems.vulkanTexturemipmapgen", "de.saschawillems.vulkanTriangle", + "de.saschawillems.vulkanViewportarray", "de.saschawillems.vulkanVulkanscene" ] diff --git a/android/viewportarray/.gitignore b/android/viewportarray/.gitignore new file mode 100644 index 00000000..7a5d249c --- /dev/null +++ b/android/viewportarray/.gitignore @@ -0,0 +1,10 @@ +/assets/ +/res/ +/bin/ +/libs/ +/obj/ +/build.xml +/local.properties +/project.properties +/proguard-project.txt +*.apk \ No newline at end of file diff --git a/android/viewportarray/AndroidManifest.xml b/android/viewportarray/AndroidManifest.xml new file mode 100644 index 00000000..e632dd83 --- /dev/null +++ b/android/viewportarray/AndroidManifest.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/android/viewportarray/example.json b/android/viewportarray/example.json new file mode 100644 index 00000000..e4a7ce92 --- /dev/null +++ b/android/viewportarray/example.json @@ -0,0 +1,11 @@ +{ + "apkname": "vulkanViewportarray", + "directories": { + "shaders": "viewportarray" + }, + "assets": { + "models": [ + "sampleroom.dae" + ] + } +} \ No newline at end of file