aboutsummaryrefslogtreecommitdiff
path: root/layers/layers_config.cpp
diff options
context:
space:
mode:
authorCourtney Goeltzenleuchter <courtney@LunarG.com>2015-06-14 11:35:37 -0600
committerCourtney Goeltzenleuchter <courtney@LunarG.com>2015-06-18 10:22:56 -0600
commit770574914a14d9a15ddb5d232ae7308742757653 (patch)
tree40f77adc98e21f15e0e12cfdbab48f62accb7e4a /layers/layers_config.cpp
parenta76a21104174017894f5673babbaa8d26f041466 (diff)
downloadusermoji-770574914a14d9a15ddb5d232ae7308742757653.tar.xz
layers: Remove callback as runtime action
Doesn't make sense to have a callback action to a config file setting, so remove that option.
Diffstat (limited to 'layers/layers_config.cpp')
-rw-r--r--layers/layers_config.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/layers/layers_config.cpp b/layers/layers_config.cpp
index 81ddd5d4..642e0b49 100644
--- a/layers/layers_config.cpp
+++ b/layers/layers_config.cpp
@@ -58,8 +58,6 @@ static VkLayerDbgAction stringToDbgAction(const char *_enum)
// only handles single enum values
if (!strcmp(_enum, "VK_DBG_LAYER_ACTION_IGNORE"))
return VK_DBG_LAYER_ACTION_IGNORE;
- else if (!strcmp(_enum, "VK_DBG_LAYER_ACTION_CALLBACK"))
- return VK_DBG_LAYER_ACTION_CALLBACK;
else if (!strcmp(_enum, "VK_DBG_LAYER_ACTION_LOG_MSG"))
return VK_DBG_LAYER_ACTION_LOG_MSG;
else if (!strcmp(_enum, "VK_DBG_LAYER_ACTION_BREAK"))