Skip to content

Commit

Permalink
Comment out two left over comment lines. (#8365)
Browse files Browse the repository at this point in the history
  • Loading branch information
joa-quim committed Feb 13, 2024
1 parent 1592878 commit 13f1c27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/grdimage.c
Original file line number Diff line number Diff line change
Expand Up @@ -1132,13 +1132,13 @@ GMT_LOCAL bool grdimage_transparencies (struct GMT_CTRL *GMT, struct GMT_IMAGE *
T->value = 0;
T->mode = 3;
T->n_dominant = T->alpha_count[0];
fprintf (stderr, "Min A = %d [x %d] Max A = %d [x %d]\n", tr_min, T->alpha_count[tr_min], tr_max, T->alpha_count[tr_max]);
//fprintf (stderr, "Min A = %d [x %d] Max A = %d [x %d]\n", tr_min, T->alpha_count[tr_min], tr_max, T->alpha_count[tr_max]);
}
else {
T->value = 255; /* Case 4: Like 3 but 255 most used of two transparency values */
T->n_dominant = T->alpha_count[255];
T->mode = 4;
fprintf (stderr, "Min A = %d [x %d] Max A = %d [x %d]\n", tr_min, T->alpha_count[tr_min], tr_max, T->alpha_count[tr_max]);
//fprintf (stderr, "Min A = %d [x %d] Max A = %d [x %d]\n", tr_min, T->alpha_count[tr_min], tr_max, T->alpha_count[tr_max]);
}
return (true);
}
Expand Down

0 comments on commit 13f1c27

Please sign in to comment.