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>
This commit is contained in:
parent
9026293bff
commit
f31d26669d
@ -374,7 +374,9 @@ lcmsMAT3_invert(struct lcmsMAT3 *result, const struct lcmsMAT3 *mat)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
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) {
|
if (stat->count == 0 || stat->min > val) {
|
||||||
stat->min = val;
|
stat->min = val;
|
||||||
@ -441,7 +443,8 @@ rgb_diff_stat_print(const struct rgb_diff_stat *stat,
|
|||||||
|
|
||||||
void
|
void
|
||||||
rgb_diff_stat_update(struct rgb_diff_stat *stat,
|
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;
|
unsigned i;
|
||||||
double ssd = 0.0;
|
double ssd = 0.0;
|
||||||
|
@ -139,7 +139,9 @@ struct rgb_diff_stat {
|
|||||||
};
|
};
|
||||||
|
|
||||||
void
|
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
|
float
|
||||||
scalar_stat_avg(const struct scalar_stat *stat);
|
scalar_stat_avg(const struct scalar_stat *stat);
|
||||||
@ -149,7 +151,8 @@ scalar_stat_print_float(const struct scalar_stat *stat);
|
|||||||
|
|
||||||
void
|
void
|
||||||
rgb_diff_stat_update(struct rgb_diff_stat *stat,
|
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
|
void
|
||||||
rgb_diff_stat_print(const struct rgb_diff_stat *stat,
|
rgb_diff_stat_print(const struct rgb_diff_stat *stat,
|
||||||
|
Loading…
Reference in New Issue
Block a user