Skip to content

Commit

Permalink
vulkan/common: remove unused event-related functions
Browse files Browse the repository at this point in the history
  • Loading branch information
haasn committed Apr 28, 2023
1 parent 7d653b9 commit 369b1fb
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions src/vulkan/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@ struct vk_ctx {
PL_VK_FUN(CreateDebugReportCallbackEXT);
PL_VK_FUN(CreateDescriptorPool);
PL_VK_FUN(CreateDescriptorSetLayout);
PL_VK_FUN(CreateEvent);
PL_VK_FUN(CreateFence);
PL_VK_FUN(CreateGraphicsPipelines);
PL_VK_FUN(CreateImage);
Expand All @@ -173,7 +172,6 @@ struct vk_ctx {
PL_VK_FUN(DestroyDescriptorPool);
PL_VK_FUN(DestroyDescriptorSetLayout);
PL_VK_FUN(DestroyDevice);
PL_VK_FUN(DestroyEvent);
PL_VK_FUN(DestroyFence);
PL_VK_FUN(DestroyImage);
PL_VK_FUN(DestroyImageView);
Expand Down Expand Up @@ -208,7 +206,6 @@ struct vk_ctx {
PL_VK_FUN(QueuePresentKHR);
PL_VK_FUN(QueueSubmit2);
PL_VK_FUN(QueueWaitIdle);
PL_VK_FUN(ResetEvent);
PL_VK_FUN(ResetFences);
PL_VK_FUN(ResetQueryPool);
PL_VK_FUN(SetDebugUtilsObjectNameEXT);
Expand Down
3 changes: 0 additions & 3 deletions src/vulkan/context.c
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,6 @@ static const struct vk_fun vk_dev_funs[] = {
PL_VK_DEV_FUN(CreateComputePipelines),
PL_VK_DEV_FUN(CreateDescriptorPool),
PL_VK_DEV_FUN(CreateDescriptorSetLayout),
PL_VK_DEV_FUN(CreateEvent),
PL_VK_DEV_FUN(CreateFence),
PL_VK_DEV_FUN(CreateGraphicsPipelines),
PL_VK_DEV_FUN(CreateImage),
Expand All @@ -343,7 +342,6 @@ static const struct vk_fun vk_dev_funs[] = {
PL_VK_DEV_FUN(DestroyDescriptorPool),
PL_VK_DEV_FUN(DestroyDescriptorSetLayout),
PL_VK_DEV_FUN(DestroyDevice),
PL_VK_DEV_FUN(DestroyEvent),
PL_VK_DEV_FUN(DestroyFence),
PL_VK_DEV_FUN(DestroyImage),
PL_VK_DEV_FUN(DestroyImageView),
Expand All @@ -370,7 +368,6 @@ static const struct vk_fun vk_dev_funs[] = {
PL_VK_DEV_FUN(MapMemory),
PL_VK_DEV_FUN(QueueSubmit2),
PL_VK_DEV_FUN(QueueWaitIdle),
PL_VK_DEV_FUN(ResetEvent),
PL_VK_DEV_FUN(ResetFences),
PL_VK_DEV_FUN(ResetQueryPool),
PL_VK_DEV_FUN(SetDebugUtilsObjectNameEXT),
Expand Down

0 comments on commit 369b1fb

Please sign in to comment.