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.cpp2135 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()
[all …]