mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 04:48:08 +02:00
vulkan/runtime: fix invalid address flags value for CmdCopyBufferToImage2
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Fixes: a8e49be9d9 ("vulkan/runtime: add implementation of older entrypoints using KHR_DAC")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/40387>
This commit is contained in:
parent
5d2cc50247
commit
3ffca66b3c
1 changed files with 1 additions and 1 deletions
|
|
@ -847,7 +847,7 @@ vk_common_CmdCopyBufferToImage2(
|
|||
.addressRange = vk_device_address_range(
|
||||
buffer, pCopyBufferToImageInfo->pRegions[r].bufferOffset,
|
||||
VK_WHOLE_SIZE),
|
||||
.addressFlags = buffer->copy_flags,
|
||||
.addressFlags = buffer->address_flags,
|
||||
.addressRowLength = pCopyBufferToImageInfo->pRegions[r].bufferRowLength,
|
||||
.addressImageHeight = pCopyBufferToImageInfo->pRegions[r].bufferImageHeight,
|
||||
.imageSubresource = pCopyBufferToImageInfo->pRegions[r].imageSubresource,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue