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>
|
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>
|
|
|
|
#include <wlr/backend.h>
|
2017-06-19 22:41:02 +00:00
|
|
|
|
|
|
|
struct wlr_output_impl {
|
2017-08-13 14:51:50 +00:00
|
|
|
void (*enable)(struct wlr_output *output, bool enable);
|
|
|
|
bool (*set_mode)(struct wlr_output *output, struct wlr_output_mode *mode);
|
2017-12-11 11:14:23 +00:00
|
|
|
bool (*set_custom_mode)(struct wlr_output *output, int32_t width,
|
|
|
|
int32_t height, int32_t refresh);
|
2017-08-13 14:51:50 +00:00
|
|
|
void (*transform)(struct wlr_output *output,
|
2017-10-12 07:40:51 +00:00
|
|
|
enum wl_output_transform transform);
|
2017-08-13 14:51:50 +00:00
|
|
|
bool (*set_cursor)(struct wlr_output *output, const uint8_t *buf,
|
2017-10-12 07:40:51 +00:00
|
|
|
int32_t stride, uint32_t width, uint32_t height,
|
|
|
|
int32_t hotspot_x, int32_t hotspot_y, bool update_pixels);
|
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);
|
|
|
|
void (*make_current)(struct wlr_output *output);
|
|
|
|
void (*swap_buffers)(struct wlr_output *output);
|
2017-09-06 16:53:08 +00:00
|
|
|
void (*set_gamma)(struct wlr_output *output,
|
2017-10-22 10:30:45 +00:00
|
|
|
uint32_t size, uint16_t *r, uint16_t *g, uint16_t *b);
|
|
|
|
uint32_t (*get_gamma_size)(struct wlr_output *output);
|
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);
|
2017-06-19 22:41:02 +00:00
|
|
|
|
|
|
|
#endif
|