Lines Matching refs:dst_copy_extent
2168 const VkExtent3D dst_copy_extent = in ValidateImageCopyData() local
2294 if ((0 != region.dstOffset.y) || (1 != dst_copy_extent.height)) { in ValidateImageCopyData()
2299 i, region.dstOffset.y, dst_copy_extent.height); in ValidateImageCopyData()
2304 …fo.imageType == VK_IMAGE_TYPE_1D) && ((0 != region.dstOffset.z) || (1 != dst_copy_extent.depth))) { in ValidateImageCopyData()
2309 i, region.dstOffset.z, dst_copy_extent.depth); in ValidateImageCopyData()
2372 if ((SafeModulo(dst_copy_extent.width, block_size.width) != 0) && in ValidateImageCopyData()
2373 (dst_copy_extent.width + region.dstOffset.x != mip_extent.width)) { in ValidateImageCopyData()
2380 … i, dst_copy_extent.width, block_size.width, region.dstOffset.x, mip_extent.width); in ValidateImageCopyData()
2384 if ((SafeModulo(dst_copy_extent.height, block_size.height) != 0) && in ValidateImageCopyData()
2385 (dst_copy_extent.height + region.dstOffset.y != mip_extent.height)) { in ValidateImageCopyData()
2392 … i, dst_copy_extent.height, block_size.height, region.dstOffset.y, mip_extent.height); in ValidateImageCopyData()
2396 uint32_t copy_depth = (slice_override ? depth_slices : dst_copy_extent.depth); in ValidateImageCopyData()
2404 … i, dst_copy_extent.depth, block_size.depth, region.dstOffset.z, mip_extent.depth); in ValidateImageCopyData()
2498 VkExtent3D dst_copy_extent = in PreCallValidateCmdCopyImage() local
2538 … (VK_IMAGE_TYPE_3D == dst_image_state->createInfo.imageType ? dst_copy_extent.depth in PreCallValidateCmdCopyImage()
2607 if (0 != ExceedsBounds(®ion.dstOffset, &dst_copy_extent, &img_extent)) { in PreCallValidateCmdCopyImage()
2611 …<< " ], extent [ " << dst_copy_extent.width << ", " << dst_copy_extent.height << ", " << dst_copy_… in PreCallValidateCmdCopyImage()
2650 if (slice_override) dst_copy_extent.depth = depth_slices; in PreCallValidateCmdCopyImage()
2652 extent_check = ExceedsBounds(&(region.dstOffset), &dst_copy_extent, &subresource_extent); in PreCallValidateCmdCopyImage()
2658 i, region.dstOffset.x, dst_copy_extent.width, subresource_extent.width); in PreCallValidateCmdCopyImage()
2665 … i, region.dstOffset.y, dst_copy_extent.height, subresource_extent.height); in PreCallValidateCmdCopyImage()
2672 i, region.dstOffset.z, dst_copy_extent.depth, subresource_extent.depth); in PreCallValidateCmdCopyImage()