Lines Matching refs:refImage
1845 Surface refImage (width, height); in iterate() local
1871 clear(refImage.getAccess(), m_clearColor); in iterate()
1897 if (de::inBounds(dx, 0, refImage.getWidth()) && de::inBounds(dy, 0, refImage.getHeight())) in iterate()
1898 refImage.setPixel(dx, dy, RGBA(color)); in iterate()
1903 …context.getTestContext().getLog(), "Result", "Image comparison result", refImage, resImage, thresh… in iterate()
2019 Surface refImage (width, height); in iterate() local
2044 for (int y = 0; y < refImage.getHeight(); y++) in iterate()
2046 for (int x = 0; x < refImage.getWidth(); x++) in iterate()
2050 if (((m_shaderInputTypes & SHADER_INPUT_BUILTIN_BIT) && (x < refImage.getWidth() / 2)) || in iterate()
2055 const float xf = (float(x)+.5f) / float(refImage.getWidth()); in iterate()
2065 refImage.setPixel(x, y, RGBA(color)); in iterate()
2069 …context.getTestContext().getLog(), "Result", "Image comparison result", refImage, resImage, thresh… in iterate()