Revision: 77415
          http://sourceforge.net/p/brlcad/code/77415
Author:   brlcad
Date:     2020-10-13 19:25:05 +0000 (Tue, 13 Oct 2020)
Log Message:
-----------
rename with more specificity

Modified Paths:
--------------
    brlcad/trunk/bench/pixcmp.c

Modified: brlcad/trunk/bench/pixcmp.c
===================================================================
--- brlcad/trunk/bench/pixcmp.c 2020-10-13 19:00:33 UTC (rev 77414)
+++ brlcad/trunk/bench/pixcmp.c 2020-10-13 19:25:05 UTC (rev 77415)
@@ -141,7 +141,7 @@
 
 
 HIDDEN enum diff
-compare(int r1, int g1, int b1, int r2, int g2, int b2, size_t *matching, 
size_t *off1, size_t *offmany, size_t *missing)
+compare_rgb(int r1, int g1, int b1, int r2, int g2, int b2, size_t *matching, 
size_t *off1, size_t *offmany, size_t *missing)
 {
     enum diff result = MISSING;
 
@@ -401,8 +401,6 @@
        }
     }
 
-    /* bu_log("INITIAL: bytes[%zu] < stop[%zu]\n", bytes, stop_after); */
-
     /* iterate over the pixels/bytes in the files */
     while (bytes < stop_after) {
        enum diff result;
@@ -428,7 +426,7 @@
            bytes++;
        }
 
-       result = compare(r1, g1, b1, r2, g2, b2, &matching, &off1, &offmany, 
&missing);
+       result = compare_rgb(r1, g1, b1, r2, g2, b2, &matching, &off1, 
&offmany, &missing);
 
        /* print them? */
        if ((result==MATCHING && list_same)

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to