Searched refs:dstDepthPitch (Results 1 – 2 of 2) sorted by relevance
/external/swiftshader/src/Vulkan/ |
D | VkImage.cpp | 395 int dstDepthPitch = dstImage->slicePitchBytes(dstAspect, region.dstSubresource.mipLevel); in copyTo() local 404 VkDeviceSize dstLayerPitch = (dstImageType == VK_IMAGE_TYPE_3D) ? dstDepthPitch : dstArrayPitch; in copyTo() 438 (srcDepthPitch == dstDepthPitch); in copyTo() 479 dstSlice += dstDepthPitch; in copyTo() 506 dstSlice += dstDepthPitch; in copyTo()
|
/external/angle/src/libANGLE/renderer/metal/ |
D | TextureMtl.mm | 1204 size_t dstDepthPitch = dstRowPitch * dstHeight; 1205 size_t dstDataSize = dstDepthPitch * dstDepth; 1216 prevLevelDepthPitch, dstLevelData.get(), dstRowPitch, dstDepthPitch); 1221 slice, dstLevelData.get(), dstRowPitch, dstDepthPitch, mNativeTexture)); 1227 prevLevelDepthPitch = dstDepthPitch; 1774 const size_t dstDepthPitch = dstRowPitch * mtlArea.size.height; 1777 decompressBuf.resize(dstDepthPitch * mtlArea.size.depth)); 1783 dstDepthPitch); 1788 decompressBuf.data(), dstRowPitch, dstDepthPitch, image)); 1795 const size_t dstDepthPitch = dstRowPitch * mtlArea.size.height; [all …]
|