2018-07-13 12:40:56 +00:00
|
|
|
/*
|
|
|
|
* This an unstable interface of wlroots. No guarantees are made regarding the
|
|
|
|
* future consistency of this API.
|
|
|
|
*/
|
|
|
|
#ifndef WLR_USE_UNSTABLE
|
|
|
|
#error "Add -DWLR_USE_UNSTABLE to enable unstable wlroots features"
|
|
|
|
#endif
|
|
|
|
|
2017-09-23 11:10:10 +00:00
|
|
|
#ifndef WLR_INTERFACES_WLR_OUTPUT_H
|
|
|
|
#define WLR_INTERFACES_WLR_OUTPUT_H
|
2017-09-23 08:26:01 +00:00
|
|
|
|
2017-06-19 22:41:02 +00:00
|
|
|
#include <stdbool.h>
|
2018-02-12 20:29:23 +00:00
|
|
|
#include <wlr/backend.h>
|
2017-10-31 17:00:33 +00:00
|
|
|
#include <wlr/types/wlr_box.h>
|
2017-10-21 04:37:25 +00:00
|
|
|
#include <wlr/types/wlr_output.h>
|
2017-06-19 22:41:02 +00:00
|
|
|
|
|
|
|
struct wlr_output_impl {
|
2019-08-07 06:11:38 +00:00
|
|
|
bool (*enable)(struct wlr_output *output, bool enable);
|
|
|
|
bool (*set_mode)(struct wlr_output *output, struct wlr_output_mode *mode);
|
|
|
|
bool (*set_custom_mode)(struct wlr_output *output, int32_t width,
|
|
|
|
int32_t height, int32_t refresh);
|
2018-05-01 20:38:04 +00:00
|
|
|
bool (*set_cursor)(struct wlr_output *output, struct wlr_texture *texture,
|
2018-05-09 18:58:18 +00:00
|
|
|
int32_t scale, enum wl_output_transform transform,
|
2018-05-01 20:38:04 +00:00
|
|
|
int32_t hotspot_x, int32_t hotspot_y, bool update_texture);
|
2017-08-13 14:51:50 +00:00
|
|
|
bool (*move_cursor)(struct wlr_output *output, int x, int y);
|
|
|
|
void (*destroy)(struct wlr_output *output);
|
2019-04-23 16:26:21 +00:00
|
|
|
bool (*attach_render)(struct wlr_output *output, int *buffer_age);
|
|
|
|
bool (*commit)(struct wlr_output *output);
|
2018-10-03 08:36:33 +00:00
|
|
|
bool (*set_gamma)(struct wlr_output *output, size_t size,
|
|
|
|
const uint16_t *r, const uint16_t *g, const uint16_t *b);
|
|
|
|
size_t (*get_gamma_size)(struct wlr_output *output);
|
2018-05-21 17:50:51 +00:00
|
|
|
bool (*export_dmabuf)(struct wlr_output *output,
|
2018-05-31 11:33:27 +00:00
|
|
|
struct wlr_dmabuf_attributes *attribs);
|
2018-10-29 19:38:57 +00:00
|
|
|
bool (*schedule_frame)(struct wlr_output *output);
|
2019-04-29 19:04:18 +00:00
|
|
|
bool (*attach_buffer)(struct wlr_output *output, struct wlr_buffer *buffer);
|
2017-06-19 22:41:02 +00:00
|
|
|
};
|
|
|
|
|
2017-10-21 04:37:25 +00:00
|
|
|
void wlr_output_init(struct wlr_output *output, struct wlr_backend *backend,
|
2018-01-04 11:46:15 +00:00
|
|
|
const struct wlr_output_impl *impl, struct wl_display *display);
|
2017-12-17 17:02:55 +00:00
|
|
|
void wlr_output_update_mode(struct wlr_output *output,
|
|
|
|
struct wlr_output_mode *mode);
|
|
|
|
void wlr_output_update_custom_mode(struct wlr_output *output, int32_t width,
|
|
|
|
int32_t height, int32_t refresh);
|
2018-01-04 11:46:15 +00:00
|
|
|
void wlr_output_update_enabled(struct wlr_output *output, bool enabled);
|
2019-04-23 17:22:42 +00:00
|
|
|
void wlr_output_update_needs_frame(struct wlr_output *output);
|
2018-04-17 23:15:25 +00:00
|
|
|
void wlr_output_damage_whole(struct wlr_output *output);
|
2018-01-26 21:39:23 +00:00
|
|
|
void wlr_output_send_frame(struct wlr_output *output);
|
2018-10-02 10:11:09 +00:00
|
|
|
void wlr_output_send_present(struct wlr_output *output,
|
|
|
|
struct wlr_output_event_present *event);
|
2017-06-19 22:41:02 +00:00
|
|
|
|
|
|
|
#endif
|