mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 02:20:11 +01:00
radv: implement vkTransitionImageLayout()
It's a no-op. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35974>
This commit is contained in:
parent
b2e338a9c7
commit
ea4ad51eb1
1 changed files with 8 additions and 0 deletions
|
|
@ -171,3 +171,11 @@ radv_CopyImageToImageEXT(VkDevice _device, const VkCopyImageToImageInfo *pCopyIm
|
|||
|
||||
return VK_SUCCESS;
|
||||
}
|
||||
|
||||
VKAPI_ATTR VkResult VKAPI_CALL
|
||||
radv_TransitionImageLayout(VkDevice _device, uint32_t transitionCount,
|
||||
const VkHostImageLayoutTransitionInfo *pTransitions)
|
||||
{
|
||||
/* no-op */
|
||||
return VK_SUCCESS;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue