Mesa (master): anv: remove dummy VK_DEBUG_MARKER_EXT entry points

Emil Velikov evelikov at kemper.freedesktop.org
Thu Aug 18 14:39:51 UTC 2016


Module: Mesa
Branch: master
Commit: ebd5dc8826ccd23a40bef452181604832c7c913a
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=ebd5dc8826ccd23a40bef452181604832c7c913a

Author: mil Velikov <emil.velikov at collabora.com>
Date:   Wed Jul 27 08:19:41 2016 -0700

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 at lists.freedesktop.org>
Cc: Jason Ekstrand <jason at jlekstrand.net>
Signed-off-by: Emil Velikov <emil.velikov at collabora.com>

---

 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 3f1334b..6aa20eb 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)
-{
-}




More information about the mesa-commit mailing list