Lines Matching refs:srcSubresource
78 int srcBytesPerTexel = bytesPerTexel(pRegion.srcSubresource.aspectMask); in copyTo()
81 if(!((pRegion.srcSubresource.aspectMask == VK_IMAGE_ASPECT_COLOR_BIT) || in copyTo()
82 (pRegion.srcSubresource.aspectMask == VK_IMAGE_ASPECT_DEPTH_BIT) || in copyTo()
83 (pRegion.srcSubresource.aspectMask == VK_IMAGE_ASPECT_STENCIL_BIT)) || in copyTo()
84 (pRegion.srcSubresource.baseArrayLayer != 0) || in copyTo()
85 (pRegion.srcSubresource.layerCount != 1)) in copyTo()
99 …har* srcMem = static_cast<const char*>(getTexelPointer(pRegion.srcOffset, pRegion.srcSubresource)); in copyTo()
102 …int srcRowPitchBytes = rowPitchBytes(pRegion.srcSubresource.aspectMask, pRegion.srcSubresource.mip… in copyTo()
103 …int srcSlicePitchBytes = slicePitchBytes(pRegion.srcSubresource.aspectMask, pRegion.srcSubresource… in copyTo()
107 VkExtent3D srcExtent = getMipLevelExtent(pRegion.srcSubresource.mipLevel); in copyTo()
450 VkImageAspectFlags srcFlags = region.srcSubresource.aspectMask; in blit()
452 if((region.srcSubresource.baseArrayLayer != 0) || in blit()
454 (region.srcSubresource.layerCount != 1) || in blit()
464 sw::Surface* srcSurface = asSurface(srcFlags, region.srcSubresource.mipLevel, 0); in blit()