Home
last modified time | relevance | path

Searched refs:fMaxError (Results 1 – 9 of 9) sorted by relevance

/third_party/flutter/skia/tools/skqp/src/
Dskqp_main.cpp113 } else if (outcome.fMaxError != 0) { in main()
114 out << "FAILED: " << testName << " (" << outcome.fMaxError << ")\n"; in main()
Dskqp_model.cpp71 result.fMaxError = SkMax32(error, result.fMaxError); in Check()
Dskqp.h73 int fMaxError = 0; // maximum error of all pixel. member
Dskqp.cpp312 if (modelResult.fOutcome.fMaxError <= passingThreshold) { in evaluateGM()
460 outcome.fMaxError, outcome.fBadPixelCount, outcome.fTotalError); in makeReport()
464 if (passingThreshold == -1 || outcome.fMaxError <= passingThreshold) { in makeReport()
/third_party/skia/tools/skqp/src/
Dskqp_main.cpp128 } else if (outcome.fMaxError != 0) { in main()
129 out << "FAILED: " << testName << " (" << outcome.fMaxError << ")\n"; in main()
Dskqp_model.cpp71 result.fMaxError = std::max(error, result.fMaxError); in Check()
Dskqp.h74 int fMaxError = 0; // maximum error of all pixel. member
Dskqp.cpp323 if (modelResult.fOutcome.fMaxError <= passingThreshold) { in evaluateGM()
471 outcome.fMaxError, outcome.fBadPixelCount, outcome.fTotalError); in makeReport()
475 if (passingThreshold == -1 || outcome.fMaxError <= passingThreshold) { in makeReport()
/third_party/skia/samplecode/
DSampleFitCubicToCircle.cpp53 double fMaxError; // Max error (in pixels) between the cubic and the screen-space arc. member in SampleFitCubicToCircle
133 fMaxError = std::sqrt(errX*errX + errY*errY) - kRadius; in fitCubic()
134 fInfoStrings.push_back().printf("max error=%.5gpx", fMaxError); in fitCubic()