aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKirill Primak <vyivel@eclair.cafe>2022-01-13 11:55:09 +0300
committerSimon Ser <contact@emersion.fr>2022-01-13 10:06:41 +0000
commit36b5d5888cc48c40857b6d9275917cd57d0dfa0c (patch)
tree1ec26265004b0a94932a31f7e6a606134d4bb216 /include
parent4ec683ad1c62fe47e0a3bc238446ae8e79f08246 (diff)
surface: move impl to types/wlr_{sub,}compositor.c
Diffstat (limited to 'include')
-rw-r--r--include/types/wlr_surface.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/include/types/wlr_surface.h b/include/types/wlr_surface.h
deleted file mode 100644
index b8c7d02d..00000000
--- a/include/types/wlr_surface.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef TYPES_WLR_SURFACE_H
-#define TYPES_WLR_SURFACE_H
-
-#include <wlr/types/wlr_surface.h>
-
-struct wlr_renderer;
-
-/**
- * Create a new surface resource with the provided new ID.
- */
-struct wlr_surface *surface_create(struct wl_client *client,
- uint32_t version, uint32_t id, struct wlr_renderer *renderer);
-
-/**
- * Create a new subsurface resource with the provided new ID.
- */
-struct wlr_subsurface *subsurface_create(struct wlr_surface *surface,
- struct wlr_surface *parent, uint32_t version, uint32_t id);
-
-#endif