Lines Matching refs:RGBA
243 inline tcu::RGBA toRGBAMasked (const tcu::Vec4& v, deUint8 mask) in toRGBAMasked()
245 return tcu::RGBA((mask&tcu::RGBA::RED_MASK) ? tcu::floatToU8(v.x()) : 0, in toRGBAMasked()
246 (mask&tcu::RGBA::GREEN_MASK) ? tcu::floatToU8(v.y()) : 0, in toRGBAMasked()
247 (mask&tcu::RGBA::BLUE_MASK) ? tcu::floatToU8(v.z()) : 0, in toRGBAMasked()
248 …(mask&tcu::RGBA::ALPHA_MASK) ? tcu::floatToU8(v.w()) : 0xFF); //!< \note Alpha defaults to full sa… in toRGBAMasked()
252 inline tcu::Vec4 toVec4 (const tcu::RGBA& c) in toVec4()
259 return (deUint8)((format.redBits ? tcu::RGBA::RED_MASK : 0) | in getColorMask()
260 (format.greenBits ? tcu::RGBA::GREEN_MASK : 0) | in getColorMask()
261 (format.blueBits ? tcu::RGBA::BLUE_MASK : 0) | in getColorMask()
262 (format.alphaBits ? tcu::RGBA::ALPHA_MASK : 0)); in getColorMask()
371 …onst char* desc, const tcu::Surface& reference, const tcu::Surface& rendered, tcu::RGBA threshold);
372 …u::TestLog& log, const tcu::Surface& reference, const tcu::Surface& rendered, tcu::RGBA threshold);