mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-03 20:48:08 +02:00
vk/meta: Fix buffer copy extents
This commit is contained in:
parent
d7044a19b1
commit
13719e9225
1 changed files with 2 additions and 2 deletions
|
|
@ -711,10 +711,10 @@ void anv_CmdCopyBuffer(
|
|||
meta_emit_blit(cmd_buffer,
|
||||
&src_view,
|
||||
(VkOffset3D) { 0, 0, 0 },
|
||||
(VkExtent3D) { pRegions[r].copySize, 0, 0 },
|
||||
(VkExtent3D) { pRegions[r].copySize, 1, 1 },
|
||||
&dest_view,
|
||||
(VkOffset3D) { 0, 0, 0 },
|
||||
(VkExtent3D) { pRegions[r].copySize, 0, 0 });
|
||||
(VkExtent3D) { pRegions[r].copySize, 1, 1 });
|
||||
}
|
||||
|
||||
meta_finish_blit(cmd_buffer, &saved_state);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue