From 52f094859ab65bd5d620831c73310517480f6a6f Mon Sep 17 00:00:00 2001 From: mil Velikov Date: Wed, 27 Jul 2016 08:19:41 -0700 Subject: [PATCH] anv: remove dummy VK_DEBUG_MARKER_EXT entry points The vkCmdDbgMarker{Begin,End} symbols are exported, yet the json does no advertise that the driver supports the extension. Furthermore the functions are empty stubs. Remove those until we get a proper implementation and json notation. Cc: "12.0" Cc: Jason Ekstrand Signed-off-by: Emil Velikov (cherry picked from commit ebd5dc8826ccd23a40bef452181604832c7c913a) --- src/intel/vulkan/anv_device.c | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index e445c96fcef..8f1a617aada 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -1792,23 +1792,3 @@ void anv_DestroyFramebuffer( anv_free2(&device->alloc, pAllocator, fb); } - -void vkCmdDbgMarkerBegin( - VkCommandBuffer commandBuffer, - const char* pMarker) - __attribute__ ((visibility ("default"))); - -void vkCmdDbgMarkerEnd( - VkCommandBuffer commandBuffer) - __attribute__ ((visibility ("default"))); - -void vkCmdDbgMarkerBegin( - VkCommandBuffer commandBuffer, - const char* pMarker) -{ -} - -void vkCmdDbgMarkerEnd( - VkCommandBuffer commandBuffer) -{ -}