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