Lines Matching defs:pixel
750 glw::GLubyte pixel[4] = { 0 };
752 gl.readPixels(0, 0, 1, 1, GL_RGBA, GL_UNSIGNED_BYTE, pixel);
756 if ((255 != pixel[0]) || (0 != pixel[1]) || (0 != pixel[2]) || (255 != pixel[3]))
759 << tcu::TestLog::Message << "Frameuffer content (" << (unsigned int)pixel[0] << ", "
760 << (unsigned int)pixel[1] << ", " << (unsigned int)pixel[2] << ", " << (unsigned int)pixel[3]