aux/vk: Add vkResetCommandPool;

This commit is contained in:
bjorn 2022-05-26 14:34:37 -07:00 committed by Jakob Bornecrantz
parent 0496ba9c5c
commit 24c9dabfbb
3 changed files with 3 additions and 0 deletions

View file

@ -48,6 +48,7 @@ def get_device_cmds():
None,
Cmd("vkCreateCommandPool"),
Cmd("vkDestroyCommandPool"),
Cmd("vkResetCommandPool"),
None,
Cmd("vkAllocateCommandBuffers"),
Cmd("vkBeginCommandBuffer"),

View file

@ -183,6 +183,7 @@ vk_get_device_functions(struct vk_bundle *vk)
vk->vkCreateCommandPool = GET_DEV_PROC(vk, vkCreateCommandPool);
vk->vkDestroyCommandPool = GET_DEV_PROC(vk, vkDestroyCommandPool);
vk->vkResetCommandPool = GET_DEV_PROC(vk, vkResetCommandPool);
vk->vkAllocateCommandBuffers = GET_DEV_PROC(vk, vkAllocateCommandBuffers);
vk->vkBeginCommandBuffer = GET_DEV_PROC(vk, vkBeginCommandBuffer);

View file

@ -247,6 +247,7 @@ struct vk_bundle
PFN_vkCreateCommandPool vkCreateCommandPool;
PFN_vkDestroyCommandPool vkDestroyCommandPool;
PFN_vkResetCommandPool vkResetCommandPool;
PFN_vkAllocateCommandBuffers vkAllocateCommandBuffers;
PFN_vkBeginCommandBuffer vkBeginCommandBuffer;