Lines Matching refs:refImage
2028 Surface refImage (width, height); in iterate() local
2059 clear(refImage.getAccess(), m_clearColor); in iterate()
2099 if (de::inBounds(dx, 0, refImage.getWidth()) && de::inBounds(dy, 0, refImage.getHeight())) in iterate()
2100 refImage.setPixel(dx, dy, RGBA(color)); in iterate()
2105 …context.getTestContext().getLog(), "Result", "Image comparison result", refImage, resImage, thresh… in iterate()
2265 Surface refImage (width, height); in iterate() local
2290 for (int y = 0; y < refImage.getHeight(); y++) in iterate()
2292 for (int x = 0; x < refImage.getWidth(); x++) in iterate()
2296 if (((m_shaderInputTypes & SHADER_INPUT_BUILTIN_BIT) && (x < refImage.getWidth() / 2)) || in iterate()
2301 const float xf = (float(x)+.5f) / float(refImage.getWidth()); in iterate()
2311 refImage.setPixel(x, y, RGBA(color)); in iterate()
2315 …context.getTestContext().getLog(), "Result", "Image comparison result", refImage, resImage, thresh… in iterate()