radv: Cleanup unused prime blit path.
[mesa.git] / src / amd / vulkan / radv_meta_copy.c
index a4d359826617a723a833a6d55723fb9dc757ce21..3442b49fb9c5f7e86d5339223826243e0bbc7be0 100644 (file)
@@ -486,24 +486,3 @@ void radv_CmdCopyImage(
                        dest_image, destImageLayout,
                        regionCount, pRegions);
 }
-
-void radv_blit_to_prime_linear(struct radv_cmd_buffer *cmd_buffer,
-                              struct radv_image *image,
-                              struct radv_image *linear_image)
-{
-       struct VkImageCopy image_copy = { 0 };
-
-       image_copy.srcSubresource.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT;
-       image_copy.srcSubresource.layerCount = 1;
-
-       image_copy.dstSubresource.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT;
-       image_copy.dstSubresource.layerCount = 1;
-
-       image_copy.extent.width = image->info.width;
-       image_copy.extent.height = image->info.height;
-       image_copy.extent.depth = 1;
-
-       meta_copy_image(cmd_buffer, image, VK_IMAGE_LAYOUT_GENERAL, linear_image,
-                       VK_IMAGE_LAYOUT_GENERAL,
-                       1, &image_copy);
-}