Lines Matching refs:src_copy_extent
2167 const VkExtent3D src_copy_extent = region.extent; in ValidateImageCopyData() local
2187 if ((0 != region.srcOffset.y) || (1 != src_copy_extent.height)) { in ValidateImageCopyData()
2192 i, region.srcOffset.y, src_copy_extent.height); in ValidateImageCopyData()
2197 …fo.imageType == VK_IMAGE_TYPE_1D) && ((0 != region.srcOffset.z) || (1 != src_copy_extent.depth))) { in ValidateImageCopyData()
2202 i, region.srcOffset.z, src_copy_extent.depth); in ValidateImageCopyData()
2255 if ((SafeModulo(src_copy_extent.width, block_size.width) != 0) && in ValidateImageCopyData()
2256 (src_copy_extent.width + region.srcOffset.x != mip_extent.width)) { in ValidateImageCopyData()
2263 … i, src_copy_extent.width, block_size.width, region.srcOffset.x, mip_extent.width); in ValidateImageCopyData()
2267 if ((SafeModulo(src_copy_extent.height, block_size.height) != 0) && in ValidateImageCopyData()
2268 (src_copy_extent.height + region.srcOffset.y != mip_extent.height)) { in ValidateImageCopyData()
2275 … i, src_copy_extent.height, block_size.height, region.srcOffset.y, mip_extent.height); in ValidateImageCopyData()
2279 uint32_t copy_depth = (slice_override ? depth_slices : src_copy_extent.depth); in ValidateImageCopyData()
2287 … i, src_copy_extent.depth, block_size.depth, region.srcOffset.z, mip_extent.depth); in ValidateImageCopyData()
2497 VkExtent3D src_copy_extent = region.extent; in PreCallValidateCmdCopyImage() local
2535 … (VK_IMAGE_TYPE_3D == src_image_state->createInfo.imageType ? src_copy_extent.depth in PreCallValidateCmdCopyImage()
2595 if (0 != ExceedsBounds(®ion.srcOffset, &src_copy_extent, &img_extent)) { in PreCallValidateCmdCopyImage()
2599 …<< " ], extent [ " << src_copy_extent.width << ", " << src_copy_extent.height << ", " << src_copy_… in PreCallValidateCmdCopyImage()
2620 if (slice_override) src_copy_extent.depth = depth_slices; in PreCallValidateCmdCopyImage()
2621 … uint32_t extent_check = ExceedsBounds(&(region.srcOffset), &src_copy_extent, &subresource_extent); in PreCallValidateCmdCopyImage()
2628 i, region.srcOffset.x, src_copy_extent.width, subresource_extent.width); in PreCallValidateCmdCopyImage()
2637 i, region.srcOffset.y, src_copy_extent.height, subresource_extent.height); in PreCallValidateCmdCopyImage()
2645 i, region.srcOffset.z, src_copy_extent.depth, subresource_extent.depth); in PreCallValidateCmdCopyImage()