From 31b78a4f3afe86b0406bcde89ca8db1b5f338d85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Poisot?= Date: Thu, 3 Jul 2025 12:01:07 +0000 Subject: [PATCH] scene: fix output transfer functions fixes: bf40f396b --- types/scene/wlr_scene.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/scene/wlr_scene.c b/types/scene/wlr_scene.c index 8c58ea2b1..d2327eda2 100644 --- a/types/scene/wlr_scene.c +++ b/types/scene/wlr_scene.c @@ -2298,7 +2298,7 @@ bool wlr_scene_output_build_state(struct wlr_scene_output *scene_output, struct wlr_render_pass *render_pass = wlr_renderer_begin_buffer_pass(output->renderer, buffer, &(struct wlr_buffer_pass_options){ .timer = timer ? timer->render_timer : NULL, - .color_transform = options->color_transform, + .color_transform = color_transform, .primaries = primaries, .signal_timeline = scene_output->in_timeline, .signal_point = scene_output->in_point,