Lines Matching refs:dst_copy_extent
2135 const VkExtent3D dst_copy_extent = in ValidateImageCopyData() local
2261 if ((0 != region.dstOffset.y) || (1 != dst_copy_extent.height)) { in ValidateImageCopyData()
2266 i, region.dstOffset.y, dst_copy_extent.height); in ValidateImageCopyData()
2271 …fo.imageType == VK_IMAGE_TYPE_1D) && ((0 != region.dstOffset.z) || (1 != dst_copy_extent.depth))) { in ValidateImageCopyData()
2276 i, region.dstOffset.z, dst_copy_extent.depth); in ValidateImageCopyData()
2339 if ((SafeModulo(dst_copy_extent.width, block_size.width) != 0) && in ValidateImageCopyData()
2340 (dst_copy_extent.width + region.dstOffset.x != mip_extent.width)) { in ValidateImageCopyData()
2347 … i, dst_copy_extent.width, block_size.width, region.dstOffset.x, mip_extent.width); in ValidateImageCopyData()
2351 if ((SafeModulo(dst_copy_extent.height, block_size.height) != 0) && in ValidateImageCopyData()
2352 (dst_copy_extent.height + region.dstOffset.y != mip_extent.height)) { in ValidateImageCopyData()
2359 … i, dst_copy_extent.height, block_size.height, region.dstOffset.y, mip_extent.height); in ValidateImageCopyData()
2363 uint32_t copy_depth = (slice_override ? depth_slices : dst_copy_extent.depth); in ValidateImageCopyData()
2371 … i, dst_copy_extent.depth, block_size.depth, region.dstOffset.z, mip_extent.depth); in ValidateImageCopyData()
2467 VkExtent3D dst_copy_extent = in PreCallValidateCmdCopyImage() local
2507 … (VK_IMAGE_TYPE_3D == dst_image_state->createInfo.imageType ? dst_copy_extent.depth in PreCallValidateCmdCopyImage()
2576 if (0 != ExceedsBounds(®ion.dstOffset, &dst_copy_extent, &img_extent)) { in PreCallValidateCmdCopyImage()
2580 …<< " ], extent [ " << dst_copy_extent.width << ", " << dst_copy_extent.height << ", " << dst_copy_… in PreCallValidateCmdCopyImage()
2619 if (slice_override) dst_copy_extent.depth = depth_slices; in PreCallValidateCmdCopyImage()
2621 extent_check = ExceedsBounds(&(region.dstOffset), &dst_copy_extent, &subresource_extent); in PreCallValidateCmdCopyImage()
2627 i, region.dstOffset.x, dst_copy_extent.width, subresource_extent.width); in PreCallValidateCmdCopyImage()
2634 … i, region.dstOffset.y, dst_copy_extent.height, subresource_extent.height); in PreCallValidateCmdCopyImage()
2641 i, region.dstOffset.z, dst_copy_extent.depth, subresource_extent.depth); in PreCallValidateCmdCopyImage()