]> granicus.if.org Git - graphviz/commitdiff
remove unused get_level function
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 2 May 2021 02:20:06 +0000 (19:20 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 16 May 2021 16:40:28 +0000 (09:40 -0700)
lib/edgepaint/lab.c

index dc926581088a484495aa82ad2be713a1cd68139f..6fa2e6f07e2eee9f211be491c19f6eb1ab8c2f63 100644 (file)
@@ -137,23 +137,6 @@ color_rgb XYZ2RGB(color_xyz color){
   return color_rgb_init(r, g, b);
 }
 
-void get_level(QuadTree qt, int *level0){
-  QuadTree q;
-  int level_max = 0, level;
-  int i;
-
-  if (!qt->qts) return;
-  for (i = 0; i < 1<<(qt->dim); i++){
-    q = qt->qts[i];
-    if (q) {
-      level = *level0 + 1;
-      get_level(q, &level);
-      level_max = MAX(level_max, level);
-    }
-  }
-  *level0 = level_max;
-}
-
 double *lab_gamut_from_file(char *gamut_file, const char *lightness, int *n){
   /* give a list of n points  in the file defining the LAB color gamut. return NULL if the mgamut file is not found.
      lightness is a string of the form 0,70, or NULL.