From 13e3c63823a187612c81953fd0cc5abf0c182cec Mon Sep 17 00:00:00 2001 From: Jente Hidskes Date: Fri, 17 Dec 2021 22:05:19 +0100 Subject: [PATCH] Remove no longer needed dependencies --- meson.build | 5 ----- output.c | 1 - render.h | 8 -------- 3 files changed, 14 deletions(-) delete mode 100644 render.h diff --git a/meson.build b/meson.build index 550cd6c..10c99fb 100644 --- a/meson.build +++ b/meson.build @@ -38,9 +38,7 @@ endif wlroots = dependency('wlroots', version: '>= 0.15.0', fallback: ['wlroots', 'wlroots']) wayland_protos = dependency('wayland-protocols', version: '>=1.14') wayland_server = dependency('wayland-server') -pixman = dependency('pixman-1') xkbcommon = dependency('xkbcommon') -math = cc.find_library('m') wl_protocol_dir = wayland_protos.get_pkgconfig_variable('pkgdatadir') wayland_scanner = find_program('wayland-scanner') @@ -135,7 +133,6 @@ cage_headers = [ configuration: conf_data), 'idle_inhibit_v1.h', 'output.h', - 'render.h', 'seat.h', 'server.h', 'util.h', @@ -156,8 +153,6 @@ executable( wayland_server, wlroots, xkbcommon, - pixman, - math, ], install: true, ) diff --git a/output.c b/output.c index 989e5b9..13eb5eb 100644 --- a/output.c +++ b/output.c @@ -34,7 +34,6 @@ #include #include "output.h" -#include "render.h" #include "seat.h" #include "server.h" #include "util.h" diff --git a/render.h b/render.h deleted file mode 100644 index 085b00b..0000000 --- a/render.h +++ /dev/null @@ -1,8 +0,0 @@ -#ifndef CG_RENDER_H -#define CG_RENDER_H - -#include "output.h" - -void output_render(struct cg_output *output, pixman_region32_t *damage); - -#endif