Lines Matching defs:topLeftPixel
434 glw::GLfloat* topLeftPixel = new glw::GLfloat[4];
435 topLeftPixel[0] = -1.0f;
436 topLeftPixel[1] = -1.0f;
437 topLeftPixel[2] = -1.0f;
438 topLeftPixel[3] = -1.0f;
441 gl.readPixels(0, 0, 1, 1, GL_RGBA, GL_FLOAT, topLeftPixel);
443 tcu::Vec4 desiredColor(topLeftPixel[0], topLeftPixel[1], topLeftPixel[2], topLeftPixel[3]);
445 delete[] topLeftPixel;