HomeSort by relevance Sort by last modified time
    Searched refs:colorThreshold (Results 1 - 25 of 42) sorted by null

1 2

  /external/chromium_org/third_party/skia/tools/
skdiff_html.h 15 const int colorThreshold,
skdiff_utils.h 49 const int colorThreshold,
skdiff_html.cpp 30 const int colorThreshold,
59 if (colorThreshold == 0) {
63 stream->writeDecAsText(colorThreshold);
225 const int colorThreshold,
283 print_table_header(&outputStream, matchCount, colorThreshold, differences,
skdiff_image.cpp 22 const int colorThreshold,
72 create_and_write_diff_image(drp, dmp, colorThreshold, outputDir, outputFilename);
123 int colorThreshold = 0;
205 colorThreshold = atoi(argv[++i]);
330 create_diff_images(diffProc, colorThreshold, baseFile, comparisonFile, outputDir, outputFile,
skdiff.cpp 158 void compute_diff(DiffRecord* dr, DiffMetricProc diffFunction, const int colorThreshold) {
205 if (!colors_match_thresholded(c0, c1, colorThreshold)) {
skdiff_utils.cpp 138 const int colorThreshold,
152 compute_diff(drp, dmp, colorThreshold);
skdiff.h 270 void compute_diff(DiffRecord* dr, DiffMetricProc diffFunction, const int colorThreshold);
skdiff_main.cpp 331 const int colorThreshold,
454 create_and_write_diff_image(drp, dmp, colorThreshold,
571 int colorThreshold = 0;
684 colorThreshold = atoi(argv[++i]);
755 create_diff_images(diffProc, colorThreshold, &differences,
767 print_diff_page(summary.fNumMatches, colorThreshold, differences,
  /external/skia/tools/
skdiff_html.h 15 const int colorThreshold,
skdiff_utils.h 49 const int colorThreshold,
skdiff_html.cpp 30 const int colorThreshold,
59 if (colorThreshold == 0) {
63 stream->writeDecAsText(colorThreshold);
225 const int colorThreshold,
283 print_table_header(&outputStream, matchCount, colorThreshold, differences,
skdiff_image.cpp 22 const int colorThreshold,
72 create_and_write_diff_image(drp, dmp, colorThreshold, outputDir, outputFilename);
123 int colorThreshold = 0;
205 colorThreshold = atoi(argv[++i]);
330 create_diff_images(diffProc, colorThreshold, baseFile, comparisonFile, outputDir, outputFile,
skdiff.cpp 158 void compute_diff(DiffRecord* dr, DiffMetricProc diffFunction, const int colorThreshold) {
205 if (!colors_match_thresholded(c0, c1, colorThreshold)) {
skdiff_utils.cpp 138 const int colorThreshold,
152 compute_diff(drp, dmp, colorThreshold);
skdiff.h 270 void compute_diff(DiffRecord* dr, DiffMetricProc diffFunction, const int colorThreshold);
skdiff_main.cpp 331 const int colorThreshold,
454 create_and_write_diff_image(drp, dmp, colorThreshold,
571 int colorThreshold = 0;
684 colorThreshold = atoi(argv[++i]);
755 create_diff_images(diffProc, colorThreshold, &differences,
767 print_diff_page(summary.fNumMatches, colorThreshold, differences,
  /external/deqp/modules/gles2/functional/
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...]
es2fPrerequisiteTests.cpp 234 RGBA colorThreshold = pixelFormat.getColorThreshold();
245 bool isPixelOk = compareThreshold(refRGBA, resRGBA, colorThreshold);
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())
  /external/deqp/modules/gles3/functional/
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...]
es3fPrerequisiteTests.cpp 234 RGBA colorThreshold = pixelFormat.getColorThreshold();
245 bool isPixelOk = compareThreshold(refRGBA, resRGBA, colorThreshold);
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())
  /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)
tcuTexLookupVerifier.cpp 85 return boolAll(logicalOr(lessThanEqual(diff, prec.colorThreshold), logicalNot(prec.colorMask)));
90 return boolAll(logicalOr(lessThanEqual(absDiff(ref, result).asUint(), prec.colorThreshold), logicalNot(prec.colorMask)));
95 return boolAll(logicalOr(lessThanEqual(absDiff(ref, result), prec.colorThreshold), logicalNot(prec.colorMask)));
147 DE_ASSERT(boolAll(greaterThan(prec.colorThreshold, Vec4(0.0f))));
151 const Vec4 stepCount = d / prec.colorThreshold;
161 DE_ASSERT(boolAll(greaterThan(prec.colorThreshold, Vec4(0.0f))));
169 const Vec4 stepCount = maxD / prec.colorThreshold;
178 DE_ASSERT(boolAll(greaterThan(prec.colorThreshold, Vec4(0.0f))));
180 const Vec4 stepCount = 1.0f / prec.colorThreshold;
189 DE_ASSERT(boolAll(greaterThan(prec.colorThreshold, Vec4(0.0f))))
    [all...]
  /external/deqp/modules/gles31/stress/
es31sVertexAttributeBindingTests.cpp 78 const int colorThreshold = 20;
92 if (de::abs(pixel.getGreen() - 255) > colorThreshold)
96 if (de::abs(pixel.getBlue() - 0) > colorThreshold)

Completed in 479 milliseconds

1 2