aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2021-06-29 13:41:47 +0200
committerSimon Zeni <simon@bl4ckb0ne.ca>2021-06-29 10:32:17 -0400
commit7cbcc65ad00e195a821cf955dd2302b6b0ec1bf0 (patch)
tree036170a8658c0a562a32f7e85a15a7f8d02180bc /include
parentddc98bf5935e57df028269fabbb588767710a184 (diff)
surface: make wlr_subsurface_create private
Same as [1], but for wlr_subsurface. [1]: https://github.com/swaywm/wlroots/pull/2814
Diffstat (limited to 'include')
-rw-r--r--include/types/wlr_surface.h6
-rw-r--r--include/wlr/types/wlr_surface.h8
2 files changed, 6 insertions, 8 deletions
diff --git a/include/types/wlr_surface.h b/include/types/wlr_surface.h
index bc30d2c9..b8c7d02d 100644
--- a/include/types/wlr_surface.h
+++ b/include/types/wlr_surface.h
@@ -11,4 +11,10 @@ struct wlr_renderer;
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
diff --git a/include/wlr/types/wlr_surface.h b/include/wlr/types/wlr_surface.h
index 00db6cd8..72dc4b30 100644
--- a/include/wlr/types/wlr_surface.h
+++ b/include/wlr/types/wlr_surface.h
@@ -214,14 +214,6 @@ bool wlr_surface_has_buffer(struct wlr_surface *surface);
struct wlr_texture *wlr_surface_get_texture(struct wlr_surface *surface);
/**
- * Create a new subsurface resource with the provided new ID. If `resource_list`
- * is non-NULL, adds the subsurface's resource to the list.
- */
-struct wlr_subsurface *wlr_subsurface_create(struct wlr_surface *surface,
- struct wlr_surface *parent, uint32_t version, uint32_t id,
- struct wl_list *resource_list);
-
-/**
* Get the root of the subsurface tree for this surface. Can return NULL if
* a surface in the tree has been destroyed.
*/