Home
last modified time | relevance | path

Searched refs:deAbs32 (Results 1 – 6 of 6) sorted by relevance

/external/deqp/framework/common/
DtcuRGBA.cpp73 rDiff = (deUint8)deAbs32(ra - rb); in computeAbsDiffMasked()
81 gDiff = (deUint8)deAbs32(ga - gb); in computeAbsDiffMasked()
89 bDiff = (deUint8)deAbs32(ba - bb); in computeAbsDiffMasked()
97 aDiff = (deUint8)deAbs32(aa - ab); in computeAbsDiffMasked()
DtcuRGBA.hpp119 deAbs32(a.getRed() - b.getRed()), in computeAbsDiff()
120 deAbs32(a.getGreen() - b.getGreen()), in computeAbsDiff()
121 deAbs32(a.getBlue() - b.getBlue()), in computeAbsDiff()
122 deAbs32(a.getAlpha() - b.getAlpha())); in computeAbsDiff()
/external/deqp/modules/glshared/
DglsVertexArrayTests.cpp1878 deUint8 r = deAbs32(refPixel.getRed() - screenCmpPixel.getRed()); in compare()
1879 deUint8 g = deAbs32(refPixel.getGreen() - screenCmpPixel.getGreen()); in compare()
1880 deUint8 b = deAbs32(refPixel.getBlue() - screenCmpPixel.getBlue()); in compare()
1889 deUint8 r = deAbs32(refCmpPixel.getRed() - screenPixel.getRed()); in compare()
1890 deUint8 g = deAbs32(refCmpPixel.getGreen() - screenPixel.getGreen()); in compare()
1891 deUint8 b = deAbs32(refCmpPixel.getBlue() - screenPixel.getBlue()); in compare()
DglsRasterizationTestUtil.cpp99 return deAbs32(colorA.getRed() - colorB.getRed()) <= thresholdRed && in compareColors()
100 deAbs32(colorA.getGreen() - colorB.getGreen()) <= thresholdGreen && in compareColors()
101 deAbs32(colorA.getBlue() - colorB.getBlue()) <= thresholdBlue; in compareColors()
1130 if (deAbs32(referenceFragments - resultFragments) > allowedDeviation) in verifySinglesampleLineGroupRasterization()
DglsDrawTest.cpp3547 const int r = deAbs32(color.getRed() - targetCmpPixel.getRed()); in pixelNeighborhoodContainsColor()
3548 const int g = deAbs32(color.getGreen() - targetCmpPixel.getGreen()); in pixelNeighborhoodContainsColor()
3549 const int b = deAbs32(color.getBlue() - targetCmpPixel.getBlue()); in pixelNeighborhoodContainsColor()
/external/deqp/framework/delibs/debase/
DdeInt32.h51 DE_INLINE int deAbs32 (int a) in deAbs32() function