• Home
  • Raw
  • Download

Lines Matching refs:copy_region

1135     VkImageCopy copy_region = {};  in CopyImage()  local
1136 copy_region.srcSubresource.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT; in CopyImage()
1137 copy_region.srcSubresource.baseArrayLayer = 0; in CopyImage()
1138 copy_region.srcSubresource.mipLevel = 0; in CopyImage()
1139 copy_region.srcSubresource.layerCount = 1; in CopyImage()
1140 copy_region.srcOffset.x = 0; in CopyImage()
1141 copy_region.srcOffset.y = 0; in CopyImage()
1142 copy_region.srcOffset.z = 0; in CopyImage()
1143 copy_region.dstSubresource.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT; in CopyImage()
1144 copy_region.dstSubresource.baseArrayLayer = 0; in CopyImage()
1145 copy_region.dstSubresource.mipLevel = 0; in CopyImage()
1146 copy_region.dstSubresource.layerCount = 1; in CopyImage()
1147 copy_region.dstOffset.x = 0; in CopyImage()
1148 copy_region.dstOffset.y = 0; in CopyImage()
1149 copy_region.dstOffset.z = 0; in CopyImage()
1150 copy_region.extent = src_image.extent(); in CopyImage()
1152 …age(cmd_buf.handle(), src_image.handle(), src_image.Layout(), handle(), Layout(), 1, &copy_region); in CopyImage()
1180 VkImageCopy copy_region = {}; in CopyImageOut() local
1181 copy_region.srcSubresource.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT; in CopyImageOut()
1182 copy_region.srcSubresource.baseArrayLayer = 0; in CopyImageOut()
1183 copy_region.srcSubresource.mipLevel = 0; in CopyImageOut()
1184 copy_region.srcSubresource.layerCount = 1; in CopyImageOut()
1185 copy_region.srcOffset.x = 0; in CopyImageOut()
1186 copy_region.srcOffset.y = 0; in CopyImageOut()
1187 copy_region.srcOffset.z = 0; in CopyImageOut()
1188 copy_region.dstSubresource.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT; in CopyImageOut()
1189 copy_region.dstSubresource.baseArrayLayer = 0; in CopyImageOut()
1190 copy_region.dstSubresource.mipLevel = 0; in CopyImageOut()
1191 copy_region.dstSubresource.layerCount = 1; in CopyImageOut()
1192 copy_region.dstOffset.x = 0; in CopyImageOut()
1193 copy_region.dstOffset.y = 0; in CopyImageOut()
1194 copy_region.dstOffset.z = 0; in CopyImageOut()
1195 copy_region.extent = dst_image.extent(); in CopyImageOut()
1197 …age(cmd_buf.handle(), handle(), Layout(), dst_image.handle(), dst_image.Layout(), 1, &copy_region); in CopyImageOut()