mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 08:50:13 +01:00
anv/dump: Fix vkCmdPipelineBarrier flags
'true' is not valid for VkDependencyFlags. Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
parent
ac7eeebce4
commit
bc33c9b455
1 changed files with 1 additions and 1 deletions
|
|
@ -172,7 +172,7 @@ dump_image_do_blit(struct anv_device *device, struct dump_image *image,
|
|||
ANV_CALL(CmdPipelineBarrier)(anv_cmd_buffer_to_handle(cmd_buffer),
|
||||
VK_PIPELINE_STAGE_TRANSFER_BIT,
|
||||
VK_PIPELINE_STAGE_TRANSFER_BIT,
|
||||
true, 0, NULL, 0, NULL, 1,
|
||||
0, 0, NULL, 0, NULL, 1,
|
||||
&(VkImageMemoryBarrier) {
|
||||
.sType = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER,
|
||||
.srcAccessMask = VK_ACCESS_HOST_READ_BIT,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue