mirror of
https://gitlab.freedesktop.org/wayland/weston.git
synced 2026-05-15 18:18:07 +02:00
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:
parent
9486740d21
commit
25ffc4ae92
3 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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, "");
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue