Lines Matching refs:dstSubresource
79 ASSERT(srcBytesPerTexel == dst->bytesPerTexel(pRegion.dstSubresource.aspectMask)); in copyTo()
90 if(!((pRegion.dstSubresource.aspectMask == VK_IMAGE_ASPECT_COLOR_BIT) || in copyTo()
91 (pRegion.dstSubresource.aspectMask == VK_IMAGE_ASPECT_DEPTH_BIT) || in copyTo()
92 (pRegion.dstSubresource.aspectMask == VK_IMAGE_ASPECT_STENCIL_BIT)) || in copyTo()
93 (pRegion.dstSubresource.baseArrayLayer != 0) || in copyTo()
94 (pRegion.dstSubresource.layerCount != 1)) in copyTo()
100 char* dstMem = static_cast<char*>(dst->getTexelPointer(pRegion.dstOffset, pRegion.dstSubresource)); in copyTo()
104 …int dstRowPitchBytes = dst->rowPitchBytes(pRegion.dstSubresource.aspectMask, pRegion.dstSubresourc… in copyTo()
105 …t dstSlicePitchBytes = dst->slicePitchBytes(pRegion.dstSubresource.aspectMask, pRegion.dstSubresou… in copyTo()
108 VkExtent3D dstExtent = dst->getMipLevelExtent(pRegion.dstSubresource.mipLevel); in copyTo()
451 VkImageAspectFlags dstFlags = region.dstSubresource.aspectMask; in blit()
453 (region.dstSubresource.baseArrayLayer != 0) || in blit()
455 (region.dstSubresource.layerCount != 1) || in blit()
465 sw::Surface* dstSurface = Cast(dstImage)->asSurface(dstFlags, region.dstSubresource.mipLevel, 0); in blit()