HomeSort by relevance Sort by last modified time
    Searched refs:fFractionDifference (Results 1 - 5 of 5) sorted by null

  /external/skia/tools/
skdiff.h 116 , fFractionDifference(0)
138 float fFractionDifference;
182 /// Comparison routine for qsort; sorts by fFractionDifference
187 if (lhs->fFractionDifference < rhs->fFractionDifference) {
190 if (rhs->fFractionDifference < lhs->fFractionDifference) {
skdiff_image.cpp 340 printf("%.4f%% of pixels differ", 100 * dr.fFractionDifference);
342 if (dr.fFractionDifference < 0.01) {
343 printf(" %d pixels", static_cast<int>(dr.fFractionDifference *
skdiff_html.cpp 81 stream->writeDecAsText(static_cast<int>(diff.fFractionDifference *
116 sprintf(metricBuf, "%.4f%%", 100 * diff.fFractionDifference);
124 if (diff.fFractionDifference < 0.01) {
skdiff.cpp 221 dr->fFractionDifference = ((float) mismatchedPixels) / pixelCount;
skdiff_main.cpp 170 if (drp->fFractionDifference * 100 > fMaxMismatchPercent) {
171 fMaxMismatchPercent = drp->fFractionDifference * 100;

Completed in 24 milliseconds