Commit bb729bf9 authored by Jan Sikorski's avatar Jan Sikorski Committed by Alexandre Julliard

wined3d: Fix typo in wined3d_texture_vk_download_data().

parent a15527ff
...@@ -5029,7 +5029,7 @@ static void wined3d_texture_vk_download_data(struct wined3d_context *context, ...@@ -5029,7 +5029,7 @@ static void wined3d_texture_vk_download_data(struct wined3d_context *context,
if (dst_bo->host_synced) if (dst_bo->host_synced)
{ {
vk_barrier.srcAccessMask |= VK_ACCESS_HOST_READ_BIT; vk_barrier.dstAccessMask |= VK_ACCESS_HOST_READ_BIT;
bo_stage_flags |= VK_PIPELINE_STAGE_HOST_BIT; bo_stage_flags |= VK_PIPELINE_STAGE_HOST_BIT;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment