Home | History | Annotate | Download | only in vulkan

Lines Matching refs:planeNdx

1394 VkImageAspectFlagBits getPlaneAspect (deUint32 planeNdx)
1396 DE_ASSERT(de::inBounds(planeNdx, 0u, 3u));
1397 return (VkImageAspectFlagBits)(VK_IMAGE_ASPECT_PLANE_0_BIT_KHR << planeNdx);
2081 const deUint32 planeNdx = formatInfo.channels[channelNdx].planeNdx;
2086 DE_ASSERT(size.x() % formatInfo.planes[planeNdx].widthDivisor == 0);
2087 DE_ASSERT(size.y() % formatInfo.planes[planeNdx].heightDivisor == 0);
2089 deUint32 accessWidth = size.x() / formatInfo.planes[planeNdx].widthDivisor;
2090 const deUint32 accessHeight = size.y() / formatInfo.planes[planeNdx].heightDivisor;
2091 const deUint32 elementSizeBytes = formatInfo.planes[planeNdx].elementSizeBytes;
2093 const deUint32 rowPitch = planeRowPitches[planeNdx];
2106 (deUint8*)planePtrs[planeNdx] + planeOffsetBytes);