Home | History | Annotate | Download | only in glshared

Lines Matching refs:screenPixel

1837 				tcu::RGBA	screenPixel		= screen.getPixel(x, y);
1843 error.setPixel(x, y, tcu::RGBA(screenPixel.getRed(), (screenPixel.getGreen() + 255) / 2, screenPixel.getBlue(), 255));
1851 bool screenThin = (!tcu::compareThreshold(screenPixel, screen.getPixel(x-1, y ), threshold) && !tcu::compareThreshold(screenPixel, screen.getPixel(x+1, y ), threshold)) ||
1852 (!tcu::compareThreshold(screenPixel, screen.getPixel(x , y-1), threshold) && !tcu::compareThreshold(screenPixel, screen.getPixel(x , y+1), threshold));
1876 deUint8 r = (deUint8)deAbs32(refCmpPixel.getRed() - screenPixel.getRed());
1877 deUint8 g = (deUint8)deAbs32(refCmpPixel.getGreen() - screenPixel.getGreen());
1878 deUint8 b = (deUint8)deAbs32(refCmpPixel.getBlue() - screenPixel.getBlue());