Android build files [skip ci]
This commit is contained in:
parent
04e2e96e61
commit
b47f250e6c
4 changed files with 5 additions and 9 deletions
|
|
@ -4,10 +4,6 @@ import subprocess
|
|||
import sys
|
||||
import glob
|
||||
|
||||
sys.path.append('../base/')
|
||||
|
||||
import base
|
||||
|
||||
APK_NAME = "vulkanOcclusionquery"
|
||||
APP_TITLE = "Occlusion queries"
|
||||
SHADER_DIR = "occlusionquery"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="de.saschawillems.vulkanPBRBIBL"
|
||||
package="de.saschawillems.vulkanPBRIBL"
|
||||
android:versionCode="1"
|
||||
android:versionName="1.0">
|
||||
|
||||
|
|
@ -10,14 +10,14 @@
|
|||
<uses-feature android:name="android.hardware.gamepad" android:required="false"/>
|
||||
<uses-feature android:name="android.software.leanback" android:required="false"/>
|
||||
|
||||
<application android:label="vulkanPBRBIBL" android:icon="@drawable/icon" android:hasCode="false">
|
||||
<application android:label="vulkanPBRIBL" android:icon="@drawable/icon" android:hasCode="false">
|
||||
<activity android:name="android.app.NativeActivity"
|
||||
android:label="PBR Image based lighting"
|
||||
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="vulkanPBRBIBL" />
|
||||
<meta-data android:name="android.app.lib_name" android:value="vulkanPBRIBL" />
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ import subprocess
|
|||
import sys
|
||||
import glob
|
||||
|
||||
APK_NAME = "vulkanPBRBIBL"
|
||||
APK_NAME = "vulkanPBRIBL"
|
||||
SHADER_DIR = "pbribl"
|
||||
ASSETS_MODELS = ["cube.obj", "geosphere.obj", "teapot.dae", "torusknot.obj", "venus.fbx"]
|
||||
ASSETS_TEXTURES = ["hamarikyu_bridge_radiance_cube.ktx", "hamarikyu_bridge_irradiance_cube.ktx"]
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ DATADIR := $(LOCAL_PATH)/../../data
|
|||
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_MODULE := vulkanPBRBIBL
|
||||
LOCAL_MODULE := vulkanPBRIBL
|
||||
|
||||
PROJECT_FILES := $(wildcard $(LOCAL_PATH)/../../pbribl/*.cpp)
|
||||
PROJECT_FILES += $(wildcard $(LOCAL_PATH)/../../base/*.cpp)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue