mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-02-03 12:28:07 +00:00
aux/vk: Add vkCmdCopyBufferToImage and vkCmdCopyImageToBuffer
This commit is contained in:
parent
8899b267a6
commit
c42d681db0
src/xrt/auxiliary/vk
|
@ -897,6 +897,8 @@ vk_get_device_functions(struct vk_bundle *vk)
|
|||
vk->vkCmdDraw = GET_DEV_PROC(vk, vkCmdDraw);
|
||||
vk->vkCmdDrawIndexed = GET_DEV_PROC(vk, vkCmdDrawIndexed);
|
||||
vk->vkCmdDispatch = GET_DEV_PROC(vk, vkCmdDispatch);
|
||||
vk->vkCmdCopyBufferToImage = GET_DEV_PROC(vk, vkCmdCopyBufferToImage);
|
||||
vk->vkCmdCopyImageToBuffer = GET_DEV_PROC(vk, vkCmdCopyImageToBuffer);
|
||||
vk->vkEndCommandBuffer = GET_DEV_PROC(vk, vkEndCommandBuffer);
|
||||
vk->vkFreeCommandBuffers = GET_DEV_PROC(vk, vkFreeCommandBuffers);
|
||||
vk->vkCreateRenderPass = GET_DEV_PROC(vk, vkCreateRenderPass);
|
||||
|
|
|
@ -176,6 +176,8 @@ struct vk_bundle
|
|||
PFN_vkCmdDraw vkCmdDraw;
|
||||
PFN_vkCmdDrawIndexed vkCmdDrawIndexed;
|
||||
PFN_vkCmdDispatch vkCmdDispatch;
|
||||
PFN_vkCmdCopyBufferToImage vkCmdCopyBufferToImage;
|
||||
PFN_vkCmdCopyImageToBuffer vkCmdCopyImageToBuffer;
|
||||
PFN_vkEndCommandBuffer vkEndCommandBuffer;
|
||||
PFN_vkFreeCommandBuffers vkFreeCommandBuffers;
|
||||
|
||||
|
|
Loading…
Reference in a new issue