diff options
author | mil Velikov <emil.velikov@collabora.com> | 2016-07-27 08:19:41 -0700 |
---|---|---|
committer | Emil Velikov <emil.l.velikov@gmail.com> | 2016-08-18 15:05:32 +0100 |
commit | ebd5dc8826ccd23a40bef452181604832c7c913a (patch) | |
tree | 4f1eb215f91176d33d8c748d6289755ff117f0a0 | |
parent | 49394e8d7713fa42bccc273ed4c060149291614c (diff) |
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" <mesa-stable@lists.freedesktop.org>
Cc: Jason Ekstrand <jason@jlekstrand.net>
Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
-rw-r--r-- | src/intel/vulkan/anv_device.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 3f1334bdef6a..6aa20eb57212 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -1798,23 +1798,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) -{ -} |