diff --git a/.pick_status.json b/.pick_status.json index 0535a009623..f0527e3c371 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -1424,7 +1424,7 @@ "description": "vulkan/wsi: Bind memory planes, not YCbCr planes.", "nominated": true, "nomination_type": 1, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": "f5433e4d6ce247b86daed741c07aa99f2bd02c0d", "notes": null diff --git a/src/vulkan/wsi/wsi_common_drm.c b/src/vulkan/wsi/wsi_common_drm.c index 474e59f88bd..b80c1ba4f91 100644 --- a/src/vulkan/wsi/wsi_common_drm.c +++ b/src/vulkan/wsi/wsi_common_drm.c @@ -718,7 +718,7 @@ wsi_create_native_image_mem(const struct wsi_swapchain *chain, for (uint32_t p = 0; p < image->num_planes; p++) { const VkImageSubresource image_subresource = { - .aspectMask = VK_IMAGE_ASPECT_PLANE_0_BIT << p, + .aspectMask = VK_IMAGE_ASPECT_MEMORY_PLANE_0_BIT_EXT << p, .mipLevel = 0, .arrayLayer = 0, };