diff options
| author | Mark Lobodzinski <mark@lunarg.com> | 2017-06-06 08:36:47 -0600 |
|---|---|---|
| committer | Mark Lobodzinski <mark@lunarg.com> | 2017-06-07 10:10:30 -0600 |
| commit | 6be9526304e7b7ea4f9bbbe91c84c03b842b457f (patch) | |
| tree | 42558e41ffafe87ba217250a254a46e5833243f6 | |
| parent | 5ea6f3a8364c3ffa7483cd0919e2cc61532e75c3 (diff) | |
| download | usermoji-6be9526304e7b7ea4f9bbbe91c84c03b842b457f.tar.xz | |
layers: Remove dead functions from core_validation
Change-Id: Ifb2d79136bba86bb6655f400a2e46cf23e81dfe3
| -rw-r--r-- | layers/core_validation.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/layers/core_validation.cpp b/layers/core_validation.cpp index 0131c409..3b5795f6 100644 --- a/layers/core_validation.cpp +++ b/layers/core_validation.cpp @@ -11795,26 +11795,6 @@ VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL GetPhysicalDeviceProcAddr(VkInstance in } // namespace core_validation -// vk_layer_logging.h expects these to be defined - -VKAPI_ATTR VkResult VKAPI_CALL vkCreateDebugReportCallbackEXT(VkInstance instance, - const VkDebugReportCallbackCreateInfoEXT *pCreateInfo, - const VkAllocationCallbacks *pAllocator, - VkDebugReportCallbackEXT *pMsgCallback) { - return core_validation::CreateDebugReportCallbackEXT(instance, pCreateInfo, pAllocator, pMsgCallback); -} - -VKAPI_ATTR void VKAPI_CALL vkDestroyDebugReportCallbackEXT(VkInstance instance, VkDebugReportCallbackEXT msgCallback, - const VkAllocationCallbacks *pAllocator) { - core_validation::DestroyDebugReportCallbackEXT(instance, msgCallback, pAllocator); -} - -VKAPI_ATTR void VKAPI_CALL vkDebugReportMessageEXT(VkInstance instance, VkDebugReportFlagsEXT flags, - VkDebugReportObjectTypeEXT objType, uint64_t object, size_t location, - int32_t msgCode, const char *pLayerPrefix, const char *pMsg) { - core_validation::DebugReportMessageEXT(instance, flags, objType, object, location, msgCode, pLayerPrefix, pMsg); -} - // loader-layer interface v0, just wrappers since there is only a layer VK_LAYER_EXPORT VKAPI_ATTR VkResult VKAPI_CALL vkEnumerateInstanceExtensionProperties(const char *pLayerName, uint32_t *pCount, |
