Lines Matching refs:threshold

114 …lBufferAccess& reference, const ConstPixelBufferAccess& result, const RGBA threshold, int x, int y)  in comparePixelRGBA8()  argument
127 if (compareThreshold(resPix, readRGBA8(reference, x1, y1), threshold) || in comparePixelRGBA8()
128 compareThreshold(resPix, readRGBA8(reference, x0, y1), threshold) || in comparePixelRGBA8()
129 compareThreshold(resPix, readRGBA8(reference, x2, y1), threshold) || in comparePixelRGBA8()
130 compareThreshold(resPix, readRGBA8(reference, x0, y0), threshold) || in comparePixelRGBA8()
131 compareThreshold(resPix, readRGBA8(reference, x1, y0), threshold) || in comparePixelRGBA8()
132 compareThreshold(resPix, readRGBA8(reference, x2, y0), threshold) || in comparePixelRGBA8()
133 compareThreshold(resPix, readRGBA8(reference, x0, y2), threshold) || in comparePixelRGBA8()
134 compareThreshold(resPix, readRGBA8(reference, x1, y2), threshold) || in comparePixelRGBA8()
135 compareThreshold(resPix, readRGBA8(reference, x2, y2), threshold)) in comparePixelRGBA8()
183 … if (compareThreshold(resPix, bilinearSampleRGBA8(reference, (deUint32)u, (deUint32)v), threshold)) in comparePixelRGBA8()
191 …ce, const ConstPixelBufferAccess& result, const PixelBufferAccess& errorMask, const RGBA threshold) in bilinearCompareRGBA8() argument
205 if (!comparePixelRGBA8(reference, result, threshold, x, y) && in bilinearCompareRGBA8()
206 !comparePixelRGBA8(result, reference, threshold, x, y)) in bilinearCompareRGBA8()
219 …ce, const ConstPixelBufferAccess& result, const PixelBufferAccess& errorMask, const RGBA threshold) in bilinearCompare() argument
230 return bilinearCompareRGBA8(reference, result, errorMask, threshold); in bilinearCompare()