color-lcms: rename curve_set_print() to curveset_print()

Just to be consistent with the other functions in the code.

Signed-off-by: Leandro Ribeiro <leandro.ribeiro@collabora.com>
This commit is contained in:
Leandro Ribeiro 2023-06-20 00:18:03 -03:00 committed by Pekka Paalanen
parent 9486740d21
commit 25ffc4ae92
3 changed files with 4 additions and 4 deletions

View file

@ -519,7 +519,7 @@ join_powerlaw_curvesets(cmsContext context_id,
}
void
curve_set_print(cmsStage *stage, struct weston_log_scope *scope)
curveset_print(cmsStage *stage, struct weston_log_scope *scope)
{
const _cmsStageToneCurvesData *data;
uint32_t already_printed = 0;

View file

@ -33,7 +33,7 @@
#if HAVE_CMS_GET_TONE_CURVE_SEGMENT
void
curve_set_print(cmsStage *stage, struct weston_log_scope *scope);
curveset_print(cmsStage *stage, struct weston_log_scope *scope);
bool
are_curvesets_inverse(cmsStage *set_A, cmsStage *set_B);
@ -48,7 +48,7 @@ join_powerlaw_curvesets(cmsContext context_id,
# else /* HAVE_CMS_GET_TONE_CURVE_SEGMENT */
static inline void
curve_set_print(cmsStage *stage, struct weston_log_scope *scope)
curveset_print(cmsStage *stage, struct weston_log_scope *scope)
{
weston_log_scope_printf(scope, "%*scmsGetToneCurveSegment() symbol not " \
"found, so can't print curve set\n", 6, "");

View file

@ -727,7 +727,7 @@ pipeline_print(cmsPipeline **lut, cmsContext context_id,
matrix_print(stage, scope);
break;
case cmsSigCurveSetElemType:
curve_set_print(stage, scope);
curveset_print(stage, scope);
break;
default:
break;