Lines Matching refs:planes
93 const deUint32 planeW = m_size.x() / ( m_description.blockWidth * m_description.planes[planeNdx].widthDivisor);
94 planeRowPitches[planeNdx] = m_description.planes[planeNdx].elementSizeBytes * planeW;
112 const deUint32 planeW = m_size.x() / (m_description.blockWidth * m_description.planes[planeNdx].widthDivisor);
113 planeRowPitches[planeNdx] = m_description.planes[planeNdx].elementSizeBytes * planeW;
216 TCU_THROW(NotSupportedError, "Disjoint planes are not supported for format");
502 const deUint32 planeH = imageData.getSize().y() / formatDesc.planes[planeNdx].heightDivisor;
722 const deUint32 planeH = imageData->getSize().y() / formatDesc.planes[planeNdx].heightDivisor;
1003 DE_ASSERT(size.x() % (formatInfo.blockWidth * formatInfo.planes[planeNdx].widthDivisor) == 0);
1004 DE_ASSERT(size.y() % (formatInfo.blockHeight * formatInfo.planes[planeNdx].heightDivisor) == 0);
1006 deUint32 accessWidth = size.x() / ( formatInfo.blockWidth * formatInfo.planes[planeNdx].widthDivisor );
1007 const deUint32 accessHeight = size.y() / ( formatInfo.blockHeight * formatInfo.planes[planeNdx].heightDivisor );
1008 const deUint32 elementSizeBytes = formatInfo.planes[planeNdx].elementSizeBytes;
1009 const deUint32 rowPitch = formatInfo.planes[planeNdx].elementSizeBytes * accessWidth;