aboutsummaryrefslogtreecommitdiff
path: root/include/wlr
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-08-13 10:51:50 -0400
committerDrew DeVault <sir@cmpwn.com>2017-08-13 11:38:03 -0400
commit41e735242dc8788618bb668ad70ea164e47099db (patch)
tree79b474aec3b822da9a8f64e3347603d4bb1920a5 /include/wlr
parent43868168897f628fe75157be9ab38ea63310c920 (diff)
Remove wlr_output_state, update backends
Diffstat (limited to 'include/wlr')
-rw-r--r--include/wlr/interfaces/wlr_output.h22
-rw-r--r--include/wlr/types/wlr_output.h4
2 files changed, 11 insertions, 15 deletions
diff --git a/include/wlr/interfaces/wlr_output.h b/include/wlr/interfaces/wlr_output.h
index 5f9bfdd2..efc8ef43 100644
--- a/include/wlr/interfaces/wlr_output.h
+++ b/include/wlr/interfaces/wlr_output.h
@@ -4,21 +4,19 @@
#include <stdbool.h>
struct wlr_output_impl {
- void (*enable)(struct wlr_output_state *state, bool enable);
- bool (*set_mode)(struct wlr_output_state *state,
- struct wlr_output_mode *mode);
- void (*transform)(struct wlr_output_state *state,
+ void (*enable)(struct wlr_output *output, bool enable);
+ bool (*set_mode)(struct wlr_output *output, struct wlr_output_mode *mode);
+ void (*transform)(struct wlr_output *output,
enum wl_output_transform transform);
- bool (*set_cursor)(struct wlr_output_state *state,
- const uint8_t *buf, int32_t stride, uint32_t width, uint32_t height);
- bool (*move_cursor)(struct wlr_output_state *state, int x, int y);
- void (*destroy)(struct wlr_output_state *state);
- void (*make_current)(struct wlr_output_state *state);
- void (*swap_buffers)(struct wlr_output_state *state);
+ bool (*set_cursor)(struct wlr_output *output, const uint8_t *buf,
+ int32_t stride, uint32_t width, uint32_t height);
+ bool (*move_cursor)(struct wlr_output *output, int x, int y);
+ void (*destroy)(struct wlr_output *output);
+ void (*make_current)(struct wlr_output *output);
+ void (*swap_buffers)(struct wlr_output *output);
};
-struct wlr_output *wlr_output_create(struct wlr_output_impl *impl,
- struct wlr_output_state *state);
+void wlr_output_init(struct wlr_output *output, const struct wlr_output_impl *impl);
void wlr_output_free(struct wlr_output *output);
void wlr_output_update_matrix(struct wlr_output *output);
struct wl_global *wlr_output_create_global(
diff --git a/include/wlr/types/wlr_output.h b/include/wlr/types/wlr_output.h
index e57217c2..a669e3bb 100644
--- a/include/wlr/types/wlr_output.h
+++ b/include/wlr/types/wlr_output.h
@@ -14,12 +14,10 @@ struct wlr_output_mode {
};
struct wlr_output_impl;
-struct wlr_output_state;
struct wlr_output {
const struct wlr_output_impl *impl;
- struct wlr_output_state *state;
- void *user_data;
+
struct wl_global *wl_global;
struct wl_list wl_resources;