From 7832005a1fefaebcbc6eff0ac6c14cef6fe6888c Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Thu, 9 Sep 2021 10:20:06 +0200 Subject: [PATCH] scene: move source to subdir This will allow more scene-graph extensions to be added without cluttering wlr_scene.c, for instance for sub-surface handling and wlr_output_layout integration. --- types/meson.build | 2 +- types/{ => scene}/wlr_scene.c | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename types/{ => scene}/wlr_scene.c (100%) diff --git a/types/meson.build b/types/meson.build index bb27e7b4..19385e3a 100644 --- a/types/meson.build +++ b/types/meson.build @@ -3,6 +3,7 @@ wlr_files += files( 'data_device/wlr_data_offer.c', 'data_device/wlr_data_source.c', 'data_device/wlr_drag.c', + 'scene/wlr_scene.c', 'seat/wlr_seat_keyboard.c', 'seat/wlr_seat_pointer.c', 'seat/wlr_seat_touch.c', @@ -49,7 +50,6 @@ wlr_files += files( 'wlr_primary_selection.c', 'wlr_region.c', 'wlr_relative_pointer_v1.c', - 'wlr_scene.c', 'wlr_screencopy_v1.c', 'wlr_server_decoration.c', 'wlr_surface.c', diff --git a/types/wlr_scene.c b/types/scene/wlr_scene.c similarity index 100% rename from types/wlr_scene.c rename to types/scene/wlr_scene.c