aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authornyorain <nyorain@gmail.com>2017-08-09 15:58:10 +0200
committernyorain <nyorain@gmail.com>2017-08-09 17:27:12 +0200
commitcf9ee6ce3fe6d9b35f5c737c3fefa6759f8095c0 (patch)
tree65fbe2d82eee072a057056d32735500c450db79a /include
parent8473c3955cb8469c5f999410f68a3b3d3e6bee18 (diff)
Move wlr_surface into wlr
Diffstat (limited to 'include')
-rw-r--r--include/wlr/types/wlr_surface.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_surface.h b/include/wlr/types/wlr_surface.h
new file mode 100644
index 00000000..88a9a4d8
--- /dev/null
+++ b/include/wlr/types/wlr_surface.h
@@ -0,0 +1,25 @@
+#ifndef _WLR_TYPES_WLR_SURFACE_H
+#define _WLR_TYPES_WLR_SURFACE_H
+
+#include <wayland-server.h>
+
+struct wlr_surface {
+ struct wl_resource *pending_buffer;
+ bool pending_attached;
+ bool attached; // whether the surface currently has a buffer attached
+
+ struct wlr_texture *texture;
+ const char *role; // the lifetime-bound role or null
+ struct wl_resource *resource;
+
+ struct {
+ struct wl_signal destroy;
+ struct wl_signal commit;
+ } signals;
+};
+
+struct wlr_renderer;
+struct wlr_surface *wlr_surface_create(struct wl_resource *res,
+ struct wlr_renderer *renderer);
+
+#endif