Home
last modified time | relevance | path

Searched refs:dst_copy_extent (Results 1 – 1 of 1) sorted by relevance

/external/vulkan-validation-layers/layers/
Dbuffer_validation.cpp2168 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()
[all …]