Lines Matching defs:pixel
834 glw::GLubyte pixel[4] = { 0 };
836 gl.readPixels(0, 0, 1, 1, GL_RGBA, GL_UNSIGNED_BYTE, pixel);
840 if ((s_texture_data[0] != pixel[0]) || (s_texture_data[1] != pixel[1]) || (s_texture_data[2] != pixel[2]) ||
841 (s_texture_data[3] != pixel[3]))
844 << tcu::TestLog::Message << "Frameuffer content (" << (unsigned int)pixel[0] << ", "
845 << (unsigned int)pixel[1] << ", " << (unsigned int)pixel[2] << ", " << (unsigned int)pixel[3]