summaryrefslogtreecommitdiffstats
path: root/src/intel/vulkan/anv_device.c
diff options
context:
space:
mode:
authormil Velikov <emil.velikov@collabora.com>2016-07-27 08:19:41 -0700
committerEmil Velikov <emil.l.velikov@gmail.com>2016-08-18 15:05:32 +0100
commitebd5dc8826ccd23a40bef452181604832c7c913a (patch)
tree4f1eb215f91176d33d8c748d6289755ff117f0a0 /src/intel/vulkan/anv_device.c
parent49394e8d7713fa42bccc273ed4c060149291614c (diff)
downloadexternal_mesa3d-ebd5dc8826ccd23a40bef452181604832c7c913a.zip
external_mesa3d-ebd5dc8826ccd23a40bef452181604832c7c913a.tar.gz
external_mesa3d-ebd5dc8826ccd23a40bef452181604832c7c913a.tar.bz2
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>
Diffstat (limited to 'src/intel/vulkan/anv_device.c')
-rw-r--r--src/intel/vulkan/anv_device.c20
1 files changed, 0 insertions, 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)
-{
-}