HomeSort by relevance Sort by last modified time
    Searched defs:colorThreshold (Results 1 - 19 of 19) sorted by null

  /external/deqp/framework/common/
tcuTexLookupVerifier.hpp 47 Vec4 colorThreshold; //!< Threshold for match.
53 , colorThreshold (0.0f)
63 UVec4 colorThreshold; //!< Threshold for match.
69 , colorThreshold (0)
  /external/skia/tools/skdiff/
skdiff_image.cpp 19 const int colorThreshold,
69 create_and_write_diff_image(drp, dmp, colorThreshold, outputDir, outputFilename);
119 int colorThreshold = 0;
201 colorThreshold = atoi(argv[++i]);
326 create_diff_images(diffProc, colorThreshold, baseFile, comparisonFile, outputDir, outputFile,
skdiff_main.cpp 377 const int colorThreshold,
503 create_and_write_diff_image(drp, dmp, colorThreshold,
619 int colorThreshold = 0;
733 colorThreshold = atoi(argv[++i]);
808 create_diff_images(diffProc, colorThreshold, &differences,
824 print_diff_page(summary.fNumMatches, colorThreshold, differences,
  /external/deqp/modules/gles2/functional/
es2fPrerequisiteTests.cpp 234 RGBA colorThreshold = pixelFormat.getColorThreshold();
245 bool isPixelOk = compareThreshold(refRGBA, resRGBA, colorThreshold);
es2fColorClearTest.cpp 236 RGBA colorThreshold = pixelFormat.getColorThreshold();
244 colorThreshold.setRed(colorThreshold.getRed() + 1);
245 colorThreshold.setGreen(colorThreshold.getGreen() + 1);
246 colorThreshold.setBlue(colorThreshold.getBlue() + 1);
247 colorThreshold.setAlpha(colorThreshold.getAlpha() + 1);
258 bool isPixelOk = diff.isBelowThreshold(colorThreshold);
    [all...]
es2fDefaultVertexAttributeTests.cpp 426 const tcu::RGBA colorThreshold = m_context.getRenderTarget().getPixelFormat().getColorThreshold() * resultThreshold;
434 m_testCtx.getLog() << tcu::TestLog::Message << "Verifying rendered image. Expecting color " << refColor << ", threshold " << colorThreshold << tcu::TestLog::EndMessage;
441 if (de::abs(color.getRed() - refColor.getRed()) > colorThreshold.getRed() ||
442 de::abs(color.getGreen() - refColor.getGreen()) > colorThreshold.getGreen() ||
443 de::abs(color.getBlue() - refColor.getBlue()) > colorThreshold.getBlue())
es2fPolygonOffsetTests.cpp 97 const int colorThreshold = 128;
99 const tcu::IVec4 threshold = tcu::IVec4(colorThreshold, colorThreshold, colorThreshold, formatThreshold.getAlpha() > 0 ? colorThreshold : 0)
    [all...]
  /external/deqp/modules/gles3/functional/
es3fPrerequisiteTests.cpp 234 RGBA colorThreshold = pixelFormat.getColorThreshold();
245 bool isPixelOk = compareThreshold(refRGBA, resRGBA, colorThreshold);
es3fColorClearTest.cpp 236 RGBA colorThreshold = pixelFormat.getColorThreshold();
244 colorThreshold.setRed(colorThreshold.getRed() + 1);
245 colorThreshold.setGreen(colorThreshold.getGreen() + 1);
246 colorThreshold.setBlue(colorThreshold.getBlue() + 1);
247 colorThreshold.setAlpha(colorThreshold.getAlpha() + 1);
258 bool isPixelOk = diff.isBelowThreshold(colorThreshold);
    [all...]
es3fDefaultVertexAttributeTests.cpp 503 const tcu::RGBA colorThreshold = m_context.getRenderTarget().getPixelFormat().getColorThreshold() * resultThreshold;
511 m_testCtx.getLog() << tcu::TestLog::Message << "Verifying rendered image. Expecting color " << refColor << ", threshold " << colorThreshold << tcu::TestLog::EndMessage;
518 if (de::abs(color.getRed() - refColor.getRed()) > colorThreshold.getRed() ||
519 de::abs(color.getGreen() - refColor.getGreen()) > colorThreshold.getGreen() ||
520 de::abs(color.getBlue() - refColor.getBlue()) > colorThreshold.getBlue())
es3fPolygonOffsetTests.cpp 100 const int colorThreshold = 128;
102 const tcu::IVec4 threshold = tcu::IVec4(colorThreshold, colorThreshold, colorThreshold, formatThreshold.getAlpha() > 0 ? colorThreshold : 0)
    [all...]
es3fDrawTests.cpp 778 const int colorThreshold = 20;
797 if (de::abs(pixel.getGreen() - 255) > colorThreshold)
801 if (de::abs(pixel.getBlue() - 0) > colorThreshold)
    [all...]
  /external/deqp/framework/opengl/
gluTextureTestUtil.hpp 368 tcu::Vec4 colorThreshold; //!< Threshold for color value comparison.
  /external/deqp/modules/gles2/stress/
es2sSpecialFloatTests.cpp 319 const int colorThreshold = 10;
323 if (colorDiff.x() > formatThreshold.getRed() + colorThreshold ||
324 colorDiff.y() > formatThreshold.getGreen() + colorThreshold ||
325 colorDiff.z() > formatThreshold.getBlue() + colorThreshold)
    [all...]
  /external/deqp/modules/gles3/stress/
es3sSpecialFloatTests.cpp 327 const int colorThreshold = 10;
331 if (colorDiff.x() > formatThreshold.getRed() + colorThreshold ||
332 colorDiff.y() > formatThreshold.getGreen() + colorThreshold ||
333 colorDiff.z() > formatThreshold.getBlue() + colorThreshold)
    [all...]
  /external/deqp/modules/gles31/functional/
es31fDrawElementsBaseVertexTests.cpp 308 const int colorThreshold = 0; // expect perfect match
323 if (de::abs(pixel.getBlue() - 255) > colorThreshold)
es31fDrawTests.cpp 112 const int colorThreshold = 20;
124 if (de::abs(pixel.getGreen() - 255) > colorThreshold)
128 if (de::abs(pixel.getBlue() - 0) > colorThreshold)
    [all...]
es31fVertexAttributeBindingTests.cpp 82 const int colorThreshold = 20;
96 if (de::abs(pixel.getGreen() - 255) > colorThreshold)
100 if (de::abs(pixel.getBlue() - 0) > colorThreshold)
    [all...]
  /external/deqp/modules/gles31/stress/
es31sVertexAttributeBindingTests.cpp 76 const int colorThreshold = 20;
90 if (de::abs(pixel.getGreen() - 255) > colorThreshold)
94 if (de::abs(pixel.getBlue() - 0) > colorThreshold)

Completed in 220 milliseconds