summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMark Lobodzinski <mark@lunarg.com>2016-05-24 16:04:56 -0600
committerMark Lobodzinski <mark@lunarg.com>2016-06-06 09:27:36 -0600
commite249e6e3eb6a10ff46127e0712dc6eebb8f8fb99 (patch)
tree8e76ba68582bc43c8bd19d9d313dbd4b0dff0109 /include
parentc34ab18ac7c064590a1020a8db4b6abf5a8d3a18 (diff)
layers: Move debug action enums from vk_layer.h
Moved debug-report related items from vk_layer.h. Enums are now in vk_layer_logging.h and DbgFunctionNode has been moved into a new loader header file vk_loader_layer.h. Change-Id: I6031146ba474ff01ca039da44ad5d42d054383a3
Diffstat (limited to 'include')
-rw-r--r--include/vulkan/vk_layer.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/include/vulkan/vk_layer.h b/include/vulkan/vk_layer.h
index 6f49e07f..8b7d82fb 100644
--- a/include/vulkan/vk_layer.h
+++ b/include/vulkan/vk_layer.h
@@ -234,29 +234,6 @@ typedef struct VkLayerInstanceDispatchTable_ {
CreateDisplayPlaneSurfaceKHR;
} VkLayerInstanceDispatchTable;
-
-// LL node for tree of dbg callback functions
-typedef struct VkLayerDbgFunctionNode_ {
- VkDebugReportCallbackEXT msgCallback;
- PFN_vkDebugReportCallbackEXT pfnMsgCallback;
- VkFlags msgFlags;
- void *pUserData;
- bool default_callback;
- struct VkLayerDbgFunctionNode_ *pNext;
-} VkLayerDbgFunctionNode;
-
-// TODO: Move debug action definitions out of this header file
-// Definitions for Debug Actions
-typedef enum VkLayerDbgActionBits {
- VK_DBG_LAYER_ACTION_IGNORE = 0x00000000,
- VK_DBG_LAYER_ACTION_CALLBACK = 0x00000001,
- VK_DBG_LAYER_ACTION_LOG_MSG = 0x00000002,
- VK_DBG_LAYER_ACTION_BREAK = 0x00000004,
- VK_DBG_LAYER_ACTION_DEBUG_OUTPUT = 0x00000008,
- VK_DBG_LAYER_ACTION_DEFAULT = 0x40000000,
-} VkLayerDbgActionBits;
-typedef VkFlags VkLayerDbgActionFlags;
-
// ------------------------------------------------------------------------------------------------
// CreateInstance and CreateDevice support structures