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-09-14 18:18:07 +02:00
|
|
|
bool (*enable)(struct wlr_output *output, bool enable);
|
2017-08-13 16:51:50 +02:00
|
|
|
bool (*set_mode)(struct wlr_output *output, struct wlr_output_mode *mode);
|
2017-12-11 12:14:23 +01:00
|
|
|
bool (*set_custom_mode)(struct wlr_output *output, int32_t width,
|
|
|
|
int32_t height, int32_t refresh);
|
2017-08-13 16:51:50 +02:00
|
|
|
void (*transform)(struct wlr_output *output,
|
2017-10-12 09:40:51 +02:00
|
|
|
enum wl_output_transform transform);
|
2018-05-01 22:38:04 +02:00
|
|
|
bool (*set_cursor)(struct wlr_output *output, struct wlr_texture *texture,
|
2018-05-09 20:58:18 +02:00
|
|
|
int32_t 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);
|
2018-01-21 00:06:35 +01:00
|
|
|
bool (*make_current)(struct wlr_output *output, int *buffer_age);
|
2018-02-09 22:54:14 +01:00
|
|
|
bool (*swap_buffers)(struct wlr_output *output, pixman_region32_t *damage);
|
2018-10-03 10:36:33 +02: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 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);
|
2018-10-05 16:14:22 +02:00
|
|
|
void (*schedule_frame)(struct wlr_output *output);
|
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);
|
2018-01-20 16:43:14 +01:00
|
|
|
void wlr_output_update_needs_swap(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
|