Replaced the deprecated debug marker sample with debug utils
This commit is contained in:
parent
17e2abb036
commit
3a15ec4eb9
31 changed files with 251 additions and 255 deletions
|
|
@ -1,6 +1,6 @@
|
|||
cmake_minimum_required(VERSION 3.4.1 FATAL_ERROR)
|
||||
|
||||
set(NAME debugmarker)
|
||||
set(NAME debugutils)
|
||||
|
||||
set(SRC_DIR ../../../examples/${NAME})
|
||||
set(BASE_DIR ../../../base)
|
||||
|
|
@ -4,7 +4,7 @@ apply from: '../gradle/outputfilename.gradle'
|
|||
android {
|
||||
compileSdkVersion rootProject.ext.compileSdkVersion
|
||||
defaultConfig {
|
||||
applicationId "de.saschawillems.vulkanDebugmarker"
|
||||
applicationId "de.saschawillems.vulkanDebugutils"
|
||||
minSdkVersion rootProject.ext.minSdkVersion
|
||||
targetSdkVersion rootProject.ext.targetSdkVersion
|
||||
versionCode 1
|
||||
|
|
@ -49,8 +49,8 @@ task copyTask {
|
|||
}
|
||||
|
||||
copy {
|
||||
from rootProject.ext.shaderPath + 'glsl/debugmarker'
|
||||
into 'assets/shaders/glsl/debugmarker'
|
||||
from rootProject.ext.shaderPath + 'glsl/debugUtils'
|
||||
into 'assets/shaders/glsl/debugUtils'
|
||||
include '*.*'
|
||||
}
|
||||
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="de.saschawillems.vulkanDebugmarker">
|
||||
package="de.saschawillems.vulkanDebugutils">
|
||||
|
||||
<application
|
||||
android:label="Vulkan debug markers"
|
||||
android:label="Vulkan debug utils"
|
||||
android:icon="@drawable/icon"
|
||||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
|
||||
<activity android:name="de.saschawillems.vulkanSample.VulkanActivity"
|
||||
Loading…
Add table
Add a link
Reference in a new issue