Home
last modified time | relevance | path

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

/external/vulkan-validation-layers/layers/
Dbuffer_validation.cpp4925 VkExtent3D copy_extent = pRegions[i].imageExtent; in ValidateBufferBounds() local
4927 …VkDeviceSize buffer_width = (0 == pRegions[i].bufferRowLength ? copy_extent.width : pRegions[i].bu… in ValidateBufferBounds()
4928 …VkDeviceSize buffer_height = (0 == pRegions[i].bufferImageHeight ? copy_extent.height : pRegions[i… in ValidateBufferBounds()
4938 copy_extent.width = (copy_extent.width + block_dim.width - 1) / block_dim.width; in ValidateBufferBounds()
4939 copy_extent.height = (copy_extent.height + block_dim.height - 1) / block_dim.height; in ValidateBufferBounds()
4940 copy_extent.depth = (copy_extent.depth + block_dim.depth - 1) / block_dim.depth; in ValidateBufferBounds()
4944 uint32_t z_copies = std::max(copy_extent.depth, pRegions[i].imageSubresource.layerCount); in ValidateBufferBounds()
4945 if (IsExtentSizeZero(&copy_extent) || (0 == z_copies)) { in ValidateBufferBounds()
4950 …max_buffer_offset += ((copy_extent.height - 1) * buffer_width) + copy_extent.width; // add row,col in ValidateBufferBounds()