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()
293 for (deUint32 channelNdx = 0; channelNdx < 4; channelNdx++) in fillGradient() local
295 if (formatInfo.hasChannelNdx(channelNdx)) in fillGradient()
297 const tcu::PixelBufferAccess channelAccess = imageData->getChannelAccess(channelNdx); in fillGradient()
306 channelAccess.setPixel(tcu::Vec4(tmpAccess.getPixel(x, y)[channelNdx]), x, y); in fillGradient()
962 int channelNdx) in getChannelAccess() argument
964 DE_ASSERT(formatInfo.hasChannelNdx(channelNdx)); in getChannelAccess()
966 const deUint32 planeNdx = formatInfo.channels[channelNdx].planeNdx; in getChannelAccess()
967 const deUint32 valueOffsetBits = formatInfo.channels[channelNdx].offsetBits; in getChannelAccess()
968 const deUint32 pixelStrideBytes = formatInfo.channels[channelNdx].strideBytes; in getChannelAccess()
970 const deUint8 sizeBits = formatInfo.channels[channelNdx].sizeBits; in getChannelAccess()
987 …return ChannelAccess((tcu::TextureChannelClass)formatInfo.channels[channelNdx].type, sizeBits, tcu… in getChannelAccess()