Home
last modified time | relevance | path

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

/external/angle/src/libANGLE/renderer/vulkan/
DUtilsVk.cpp2873 bool isDst3D = dest->getType() == VK_IMAGE_TYPE_3D; in copyImageBits() local
2878 access.onImageTransferWrite(params.dstLevel, 1, isDst3D ? 0 : params.dstOffset[2], in copyImageBits()
2879 isDst3D ? 1 : params.copyExtents[2], VK_IMAGE_ASPECT_COLOR_BIT, in copyImageBits()
3014 dstRegion.imageSubresource.baseArrayLayer = isDst3D ? 0 : params.dstOffset[2]; in copyImageBits()
3015 dstRegion.imageSubresource.layerCount = isDst3D ? 1 : params.copyExtents[2]; in copyImageBits()
3018 dstRegion.imageOffset.z = isDst3D ? params.dstOffset[2] : 0; in copyImageBits()
3021 dstRegion.imageExtent.depth = isDst3D ? params.copyExtents[2] : 1; in copyImageBits()
Dvk_helpers.cpp5154 bool isDst3D = dstImage->getType() == VK_IMAGE_TYPE_3D; in CopyImageSubData() local
5168 region.dstSubresource.baseArrayLayer = isDst3D ? 0 : dstZ; in CopyImageSubData()
5169 region.dstSubresource.layerCount = isDst3D ? 1 : srcDepth; in CopyImageSubData()
5176 region.dstOffset.z = isDst3D ? dstZ : 0; in CopyImageSubData()
5179 region.extent.depth = (isSrc3D || isDst3D) ? srcDepth : 1; in CopyImageSubData()