Lines Matching refs:aspectMask
78 int srcBytesPerTexel = bytesPerTexel(pRegion.srcSubresource.aspectMask); in copyTo()
79 ASSERT(srcBytesPerTexel == dst->bytesPerTexel(pRegion.dstSubresource.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()
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()
102 …int srcRowPitchBytes = rowPitchBytes(pRegion.srcSubresource.aspectMask, pRegion.srcSubresource.mip… in copyTo()
103 …int srcSlicePitchBytes = slicePitchBytes(pRegion.srcSubresource.aspectMask, pRegion.srcSubresource… in copyTo()
104 …int dstRowPitchBytes = dst->rowPitchBytes(pRegion.dstSubresource.aspectMask, pRegion.dstSubresourc… in copyTo()
105 …int dstSlicePitchBytes = dst->slicePitchBytes(pRegion.dstSubresource.aspectMask, pRegion.dstSubres… in copyTo()
159 if(!((region.imageSubresource.aspectMask == VK_IMAGE_ASPECT_COLOR_BIT) || in copy()
160 (region.imageSubresource.aspectMask == VK_IMAGE_ASPECT_DEPTH_BIT) || in copy()
161 (region.imageSubresource.aspectMask == VK_IMAGE_ASPECT_STENCIL_BIT))) in copy()
167 int imageBytesPerTexel = bytesPerTexel(region.imageSubresource.aspectMask); in copy()
168 …int imageRowPitchBytes = rowPitchBytes(region.imageSubresource.aspectMask, region.imageSubresource… in copy()
169 …int imageSlicePitchBytes = slicePitchBytes(region.imageSubresource.aspectMask, region.imageSubreso… in copy()
191 … getMemoryOffset(region.imageSubresource.aspectMask, region.imageSubresource.mipLevel, in copy()
450 VkImageAspectFlags srcFlags = region.srcSubresource.aspectMask; in blit()
451 VkImageAspectFlags dstFlags = region.dstSubresource.aspectMask; in blit()
514 …a, VkFormat format, const VkImageSubresourceRange& subresourceRange, VkImageAspectFlags aspectMask) in clear() argument
527 sw::Surface* surface = asSurface(aspectMask, mipLevel, layer); in clear()
535 …Rect2D& renderArea, const VkImageSubresourceRange& subresourceRange, VkImageAspectFlags aspectMask) in clear() argument
554 sw::Surface* surface = asSurface(aspectMask, 0, layer); in clear()
563 if(!(subresourceRange.aspectMask == VK_IMAGE_ASPECT_COLOR_BIT)) in clear()
573 if((subresourceRange.aspectMask & ~(VK_IMAGE_ASPECT_DEPTH_BIT | in clear()
579 if(subresourceRange.aspectMask & VK_IMAGE_ASPECT_DEPTH_BIT) in clear()
584 if(subresourceRange.aspectMask & VK_IMAGE_ASPECT_STENCIL_BIT) in clear()
592 if(!((subresourceRange.aspectMask == VK_IMAGE_ASPECT_COLOR_BIT) || in clear()
593 (subresourceRange.aspectMask & (VK_IMAGE_ASPECT_DEPTH_BIT | in clear()
601 if(subresourceRange.aspectMask == VK_IMAGE_ASPECT_COLOR_BIT) in clear()
607 if(subresourceRange.aspectMask & VK_IMAGE_ASPECT_DEPTH_BIT) in clear()
612 if(subresourceRange.aspectMask & VK_IMAGE_ASPECT_STENCIL_BIT) in clear()