wlroots/render/color.c
Simon Ser aa340ade65 render/color: split off lcms2 code
Fixes compilation with color management disabled.
2024-04-30 16:56:03 +02:00

37 lines
811 B
C

#include <assert.h>
#include <stdlib.h>
#include <wlr/render/color.h>
#include "render/color.h"
struct wlr_color_transform *wlr_color_transform_init_srgb(void) {
struct wlr_color_transform *tx = calloc(1, sizeof(struct wlr_color_transform));
if (!tx) {
return NULL;
}
tx->type = COLOR_TRANSFORM_SRGB;
tx->ref_count = 1;
wlr_addon_set_init(&tx->addons);
return tx;
}
static void color_transform_destroy(struct wlr_color_transform *tr) {
free(tr->lut3d.lut_3d);
wlr_addon_set_finish(&tr->addons);
free(tr);
}
void wlr_color_transform_ref(struct wlr_color_transform *tr) {
tr->ref_count += 1;
}
void wlr_color_transform_unref(struct wlr_color_transform *tr) {
if (!tr) {
return;
}
assert(tr->ref_count > 0);
tr->ref_count -= 1;
if (tr->ref_count == 0) {
color_transform_destroy(tr);
}
}