Added viewport array sample android build files
This commit is contained in:
parent
c289c9c01f
commit
dfd0a293ad
5 changed files with 51 additions and 0 deletions
|
|
@ -60,6 +60,7 @@ EXAMPLES = [
|
||||||
"texturecubemap",
|
"texturecubemap",
|
||||||
"texturemipmapgen",
|
"texturemipmapgen",
|
||||||
"triangle",
|
"triangle",
|
||||||
|
"viewportarray",
|
||||||
"vulkanscene"
|
"vulkanscene"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -58,6 +58,7 @@ APP_NAMES = [
|
||||||
"de.saschawillems.vulkanTexturecubemap",
|
"de.saschawillems.vulkanTexturecubemap",
|
||||||
"de.saschawillems.vulkanTexturemipmapgen",
|
"de.saschawillems.vulkanTexturemipmapgen",
|
||||||
"de.saschawillems.vulkanTriangle",
|
"de.saschawillems.vulkanTriangle",
|
||||||
|
"de.saschawillems.vulkanViewportarray",
|
||||||
"de.saschawillems.vulkanVulkanscene"
|
"de.saschawillems.vulkanVulkanscene"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
||||||
10
android/viewportarray/.gitignore
vendored
Normal file
10
android/viewportarray/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
/assets/
|
||||||
|
/res/
|
||||||
|
/bin/
|
||||||
|
/libs/
|
||||||
|
/obj/
|
||||||
|
/build.xml
|
||||||
|
/local.properties
|
||||||
|
/project.properties
|
||||||
|
/proguard-project.txt
|
||||||
|
*.apk
|
||||||
28
android/viewportarray/AndroidManifest.xml
Normal file
28
android/viewportarray/AndroidManifest.xml
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
package="de.saschawillems.vulkanViewportarray"
|
||||||
|
android:versionCode="1"
|
||||||
|
android:versionName="1.0">
|
||||||
|
|
||||||
|
<uses-sdk android:minSdkVersion="19" />
|
||||||
|
|
||||||
|
<uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
|
||||||
|
<uses-feature android:name="android.hardware.gamepad" android:required="false"/>
|
||||||
|
<uses-feature android:name="android.software.leanback" android:required="false"/>
|
||||||
|
|
||||||
|
<application android:label="vulkanViewportarray" android:icon="@drawable/icon" android:hasCode="false">
|
||||||
|
<activity android:name="android.app.NativeActivity"
|
||||||
|
android:label="Viewport arrays"
|
||||||
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
||||||
|
android:launchMode="singleTask"
|
||||||
|
android:screenOrientation="landscape"
|
||||||
|
android:configChanges="orientation|screenSize|keyboardHidden">
|
||||||
|
<meta-data android:name="android.app.lib_name" android:value="vulkanViewportarray" />
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.intent.action.MAIN" />
|
||||||
|
<category android:name="android.intent.category.LAUNCHER" />
|
||||||
|
<category android:name="android.intent.category.LEANBACK_LAUNCHER"/>
|
||||||
|
</intent-filter>
|
||||||
|
</activity>
|
||||||
|
</application>
|
||||||
|
</manifest>
|
||||||
11
android/viewportarray/example.json
Normal file
11
android/viewportarray/example.json
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"apkname": "vulkanViewportarray",
|
||||||
|
"directories": {
|
||||||
|
"shaders": "viewportarray"
|
||||||
|
},
|
||||||
|
"assets": {
|
||||||
|
"models": [
|
||||||
|
"sampleroom.dae"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue