aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Lobodzinski <mark@lunarg.com>2017-02-15 14:43:21 -0700
committerMark Lobodzinski <mark@lunarg.com>2017-02-16 13:40:19 -0700
commit19ed2db07ffe25c4df5a1ccb887ccf64297cdb1b (patch)
treee461187e71abbd36d625fcec7ae0df5c6bf0879e
parentab7d7fb8d416b60bac5ec47d691f18460fab634d (diff)
downloadusermoji-19ed2db07ffe25c4df5a1ccb887ccf64297cdb1b.tar.xz
demos: Remove image layer references
Change-Id: I937f1387ca6d4405cbceea12d66e97985d367bbd
-rw-r--r--demos/cube.c7
-rw-r--r--demos/cube.cpp3
-rw-r--r--demos/smoke/ShellAndroid.cpp1
3 files changed, 4 insertions, 7 deletions
diff --git a/demos/cube.c b/demos/cube.c
index 9beb265d..f43935bb 100644
--- a/demos/cube.c
+++ b/demos/cube.c
@@ -2688,10 +2688,9 @@ static void demo_init_vk(struct demo *demo) {
};
char *instance_validation_layers_alt2[] = {
- "VK_LAYER_GOOGLE_threading", "VK_LAYER_LUNARG_parameter_validation",
- "VK_LAYER_LUNARG_object_tracker", "VK_LAYER_LUNARG_image",
- "VK_LAYER_LUNARG_core_validation", "VK_LAYER_LUNARG_swapchain",
- "VK_LAYER_GOOGLE_unique_objects"
+ "VK_LAYER_GOOGLE_threading", "VK_LAYER_LUNARG_parameter_validation",
+ "VK_LAYER_LUNARG_object_tracker", "VK_LAYER_LUNARG_core_validation",
+ "VK_LAYER_LUNARG_swapchain", "VK_LAYER_GOOGLE_unique_objects"
};
/* Look for validation layers */
diff --git a/demos/cube.cpp b/demos/cube.cpp
index 096bf0b0..5d56ecc0 100644
--- a/demos/cube.cpp
+++ b/demos/cube.cpp
@@ -733,8 +733,7 @@ struct Demo {
char const *const instance_validation_layers_alt2[] = {
"VK_LAYER_GOOGLE_threading", "VK_LAYER_LUNARG_parameter_validation", "VK_LAYER_LUNARG_object_tracker",
- "VK_LAYER_LUNARG_image", "VK_LAYER_LUNARG_core_validation", "VK_LAYER_LUNARG_swapchain",
- "VK_LAYER_GOOGLE_unique_objects"};
+ "VK_LAYER_LUNARG_core_validation", "VK_LAYER_LUNARG_swapchain", "VK_LAYER_GOOGLE_unique_objects"};
// Look for validation layers
vk::Bool32 validation_found = VK_FALSE;
diff --git a/demos/smoke/ShellAndroid.cpp b/demos/smoke/ShellAndroid.cpp
index 1e529056..d4428890 100644
--- a/demos/smoke/ShellAndroid.cpp
+++ b/demos/smoke/ShellAndroid.cpp
@@ -106,7 +106,6 @@ ShellAndroid::ShellAndroid(android_app &app, Game &game) : Shell(game), app_(app
instance_layers_.push_back("VK_LAYER_GOOGLE_threading");
instance_layers_.push_back("VK_LAYER_LUNARG_parameter_validation");
instance_layers_.push_back("VK_LAYER_LUNARG_object_tracker");
- instance_layers_.push_back("VK_LAYER_LUNARG_image");
instance_layers_.push_back("VK_LAYER_LUNARG_core_validation");
instance_layers_.push_back("VK_LAYER_LUNARG_swapchain");
instance_layers_.push_back("VK_LAYER_GOOGLE_unique_objects");