Lines Matching refs:channelNdx
86 tcu::PixelBufferAccess MultiPlaneImageData::getChannelAccess (deUint32 channelNdx) in getChannelAccess() argument
102 channelNdx); in getChannelAccess()
105 tcu::ConstPixelBufferAccess MultiPlaneImageData::getChannelAccess (deUint32 channelNdx) const in getChannelAccess()
121 channelNdx); in getChannelAccess()
323 for (deUint32 channelNdx = 0; channelNdx < 4; channelNdx++) in fillGradient() local
325 if (formatInfo.hasChannelNdx(channelNdx)) in fillGradient()
327 const tcu::PixelBufferAccess channelAccess = imageData->getChannelAccess(channelNdx); in fillGradient()
336 channelAccess.setPixel(tcu::Vec4(tmpAccess.getPixel(x, y)[channelNdx]), x, y); in fillGradient()
992 int channelNdx) in getChannelAccess() argument
994 DE_ASSERT(formatInfo.hasChannelNdx(channelNdx)); in getChannelAccess()
996 const deUint32 planeNdx = formatInfo.channels[channelNdx].planeNdx; in getChannelAccess()
997 const deUint32 valueOffsetBits = formatInfo.channels[channelNdx].offsetBits; in getChannelAccess()
998 const deUint32 pixelStrideBytes = formatInfo.channels[channelNdx].strideBytes; in getChannelAccess()
1000 const deUint8 sizeBits = formatInfo.channels[channelNdx].sizeBits; in getChannelAccess()
1017 …return ChannelAccess((tcu::TextureChannelClass)formatInfo.channels[channelNdx].type, sizeBits, tcu… in getChannelAccess()