tests/color_util: constify *_stat_update()

These arguments are not meant to be changed, and a new test will need
this const.

Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.com>
dev
Pekka Paalanen 2 years ago committed by Pekka Paalanen
parent 9026293bff
commit f31d26669d
  1. 7
      tests/color_util.c
  2. 7
      tests/color_util.h

@ -374,7 +374,9 @@ lcmsMAT3_invert(struct lcmsMAT3 *result, const struct lcmsMAT3 *mat)
}
void
scalar_stat_update(struct scalar_stat *stat, double val, struct color_float *pos)
scalar_stat_update(struct scalar_stat *stat,
double val,
const struct color_float *pos)
{
if (stat->count == 0 || stat->min > val) {
stat->min = val;
@ -441,7 +443,8 @@ rgb_diff_stat_print(const struct rgb_diff_stat *stat,
void
rgb_diff_stat_update(struct rgb_diff_stat *stat,
struct color_float *ref, struct color_float *val)
const struct color_float *ref,
const struct color_float *val)
{
unsigned i;
double ssd = 0.0;

@ -139,7 +139,9 @@ struct rgb_diff_stat {
};
void
scalar_stat_update(struct scalar_stat *stat, double val, struct color_float *pos);
scalar_stat_update(struct scalar_stat *stat,
double val,
const struct color_float *pos);
float
scalar_stat_avg(const struct scalar_stat *stat);
@ -149,7 +151,8 @@ scalar_stat_print_float(const struct scalar_stat *stat);
void
rgb_diff_stat_update(struct rgb_diff_stat *stat,
struct color_float *ref, struct color_float *val);
const struct color_float *ref,
const struct color_float *val);
void
rgb_diff_stat_print(const struct rgb_diff_stat *stat,

Loading…
Cancel
Save