You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <wlr/render/color.h>
|
|
#include <wlr/util/log.h>
|
|
|
|
struct wlr_color_transform *wlr_color_transform_init_linear_to_icc(
|
|
const void *data, size_t size) {
|
|
wlr_log(WLR_ERROR, "Cannot create color transform from ICC profile: "
|
|
"LCMS2 is compile-time disabled");
|
|
return NULL;
|
|
}
|