2018-07-13 14:40:56 +02: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 13:10:10 +02:00
|
|
|
#ifndef WLR_INTERFACES_WLR_OUTPUT_H
|
|
|
|
#define WLR_INTERFACES_WLR_OUTPUT_H
|
2017-09-23 10:26:01 +02:00
|
|
|
|
2017-06-20 00:41:02 +02:00
|
|
|
#include <stdbool.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <wlr/backend.h>
|
2017-10-31 18:00:33 +01:00
|
|
|
#include <wlr/types/wlr_box.h>
|
2017-10-21 06:37:25 +02:00
|
|
|
#include <wlr/types/wlr_output.h>
|
2017-06-20 00:41:02 +02:00
|
|
|
|
|
|
|
struct wlr_output_impl {
|
2018-05-01 22:38:04 +02:00
|
|
|
bool (*set_cursor)(struct wlr_output *output, struct wlr_texture *texture,
|
2020-04-10 11:04:21 +02:00
|
|
|
float scale, enum wl_output_transform transform,
|
2018-05-01 22:38:04 +02:00
|
|
|
int32_t hotspot_x, int32_t hotspot_y, bool update_texture);
|
2017-08-13 16:51:50 +02:00
|
|
|
bool (*move_cursor)(struct wlr_output *output, int x, int y);
|
|
|
|
void (*destroy)(struct wlr_output *output);
|
2019-04-23 18:26:21 +02:00
|
|
|
bool (*attach_render)(struct wlr_output *output, int *buffer_age);
|
2020-04-02 12:41:19 +02:00
|
|
|
bool (*test)(struct wlr_output *output);
|
2019-04-23 18:26:21 +02:00
|
|
|
bool (*commit)(struct wlr_output *output);
|
2020-04-06 11:53:20 +02:00
|
|
|
void (*rollback)(struct wlr_output *output);
|
2018-10-03 10:36:33 +02:00
|
|
|
size_t (*get_gamma_size)(struct wlr_output *output);
|
2018-05-21 19:50:51 +02:00
|
|
|
bool (*export_dmabuf)(struct wlr_output *output,
|
2018-05-31 13:33:27 +02:00
|
|
|
struct wlr_dmabuf_attributes *attribs);
|
2017-06-20 00:41:02 +02:00
|
|
|
};
|
|
|
|
|
2017-10-21 06:37:25 +02:00
|
|
|
void wlr_output_init(struct wlr_output *output, struct wlr_backend *backend,
|
2018-01-04 12:46:15 +01:00
|
|
|
const struct wlr_output_impl *impl, struct wl_display *display);
|
2017-12-17 18:02:55 +01: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 12:46:15 +01:00
|
|
|
void wlr_output_update_enabled(struct wlr_output *output, bool enabled);
|
2019-04-23 19:22:42 +02:00
|
|
|
void wlr_output_update_needs_frame(struct wlr_output *output);
|
2018-04-18 01:15:25 +02:00
|
|
|
void wlr_output_damage_whole(struct wlr_output *output);
|
2018-01-26 22:39:23 +01:00
|
|
|
void wlr_output_send_frame(struct wlr_output *output);
|
2018-10-02 12:11:09 +02:00
|
|
|
void wlr_output_send_present(struct wlr_output *output,
|
|
|
|
struct wlr_output_event_present *event);
|
2017-06-20 00:41:02 +02:00
|
|
|
|
|
|
|
#endif
|