wlroots/include/wlr/types/wlr_output.h

239 lines
7.3 KiB
C
Raw Normal View History

/*
* 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
#ifndef WLR_TYPES_WLR_OUTPUT_H
#define WLR_TYPES_WLR_OUTPUT_H
2018-02-12 20:29:23 +00:00
#include <pixman.h>
2017-11-01 19:08:15 +00:00
#include <stdbool.h>
#include <time.h>
#include <wayland-server.h>
2018-02-12 20:29:23 +00:00
#include <wayland-util.h>
#include <wlr/render/dmabuf.h>
struct wlr_output_mode {
uint32_t flags; // enum wl_output_mode
int32_t width, height;
int32_t refresh; // mHz
struct wl_list link;
};
2017-10-29 08:09:21 +00:00
struct wlr_output_cursor {
struct wlr_output *output;
double x, y;
2017-11-02 10:37:43 +00:00
bool enabled;
bool visible;
uint32_t width, height;
2017-10-29 08:09:21 +00:00
int32_t hotspot_x, hotspot_y;
struct wl_list link;
2017-11-02 10:37:43 +00:00
// only when using a software cursor without a surface
2017-10-29 08:09:21 +00:00
struct wlr_texture *texture;
// only when using a cursor surface
struct wlr_surface *surface;
struct wl_listener surface_commit;
struct wl_listener surface_destroy;
struct {
struct wl_signal destroy;
} events;
2017-10-29 08:09:21 +00:00
};
struct wlr_output_impl;
2018-02-11 12:04:00 +00:00
/**
* A compositor output region. This typically corresponds to a monitor that
* displays part of the compositor space.
*
* Compositors should listen to the `frame` event to render an output. They
* should call `wlr_output_make_current`, render and then call
* `wlr_output_swap_buffers`. No rendering should happen outside a `frame` event
* handler.
*/
struct wlr_output {
const struct wlr_output_impl *impl;
struct wlr_backend *backend;
2018-01-04 11:46:15 +00:00
struct wl_display *display;
struct wl_global *global;
struct wl_list resources;
2018-04-05 04:58:23 +00:00
char name[24];
char make[48];
char model[16];
2017-11-11 18:09:34 +00:00
char serial[16];
int32_t phys_width, phys_height; // mm
2018-01-04 11:46:15 +00:00
2018-01-21 10:11:25 +00:00
// Note: some backends may have zero modes
struct wl_list modes;
struct wlr_output_mode *current_mode;
int32_t width, height;
int32_t refresh; // mHz, may be zero
2018-01-04 11:46:15 +00:00
bool enabled;
float scale;
2017-11-01 19:08:15 +00:00
enum wl_output_subpixel subpixel;
enum wl_output_transform transform;
bool needs_swap;
// damage for cursors and fullscreen surface, in output-local coordinates
pixman_region32_t damage;
2018-01-26 21:39:23 +00:00
bool frame_pending;
2018-03-15 14:33:58 +00:00
float transform_matrix[9];
struct {
struct wl_signal frame;
struct wl_signal needs_swap;
struct wl_signal swap_buffers; // wlr_output_event_swap_buffers
2018-01-04 13:51:36 +00:00
struct wl_signal enable;
struct wl_signal mode;
struct wl_signal scale;
struct wl_signal transform;
2017-08-30 17:28:50 +00:00
struct wl_signal destroy;
} events;
2017-06-26 05:34:15 +00:00
struct wl_event_source *idle_frame;
2017-11-20 16:27:36 +00:00
struct wlr_surface *fullscreen_surface;
struct wl_listener fullscreen_surface_commit;
struct wl_listener fullscreen_surface_destroy;
int fullscreen_width, fullscreen_height;
2017-11-20 16:27:36 +00:00
2017-10-29 08:09:21 +00:00
struct wl_list cursors; // wlr_output_cursor::link
struct wlr_output_cursor *hardware_cursor;
int software_cursor_locks; // number of locks forcing software cursors
2017-10-19 16:57:45 +00:00
// the output position in layout space reported to clients
int32_t lx, ly;
2017-12-07 00:12:04 +00:00
struct wl_listener display_destroy;
void *data;
};
struct wlr_output_event_swap_buffers {
struct wlr_output *output;
struct timespec *when;
pixman_region32_t *damage;
};
2017-10-08 19:21:06 +00:00
struct wlr_surface;
/**
* Enables or disables the output. A disabled output is turned off and doesn't
* emit `frame` events.
*/
bool wlr_output_enable(struct wlr_output *output, bool enable);
void wlr_output_create_global(struct wlr_output *output);
void wlr_output_destroy_global(struct wlr_output *output);
/**
* Sets the output mode. Enables the output if it's currently disabled.
*/
bool wlr_output_set_mode(struct wlr_output *output,
2017-10-08 19:21:06 +00:00
struct wlr_output_mode *mode);
/**
* Sets a custom mode on the output. If modes are available, they are preferred.
* Setting `refresh` to zero lets the backend pick a preferred value.
*/
2017-12-11 11:14:23 +00:00
bool wlr_output_set_custom_mode(struct wlr_output *output, int32_t width,
int32_t height, int32_t refresh);
void wlr_output_set_transform(struct wlr_output *output,
2017-10-08 19:21:06 +00:00
enum wl_output_transform transform);
2017-10-19 16:57:45 +00:00
void wlr_output_set_position(struct wlr_output *output, int32_t lx, int32_t ly);
2017-12-15 00:00:03 +00:00
void wlr_output_set_scale(struct wlr_output *output, float scale);
void wlr_output_destroy(struct wlr_output *output);
/**
* Computes the transformed output resolution.
*/
void wlr_output_transformed_resolution(struct wlr_output *output,
int *width, int *height);
/**
* Computes the transformed and scaled output resolution.
*/
void wlr_output_effective_resolution(struct wlr_output *output,
2017-10-08 19:21:06 +00:00
int *width, int *height);
/**
2018-01-21 10:11:25 +00:00
* Makes the output rendering context current.
*
* `buffer_age` is set to the drawing buffer age in number of frames or -1 if
2018-01-21 10:11:25 +00:00
* unknown. This is useful for damage tracking.
*/
bool wlr_output_make_current(struct wlr_output *output, int *buffer_age);
/**
* Swaps the output buffers. If the time of the frame isn't known, set `when` to
* NULL. If the compositor doesn't support damage tracking, set `damage` to
* NULL.
2018-01-21 10:11:25 +00:00
*
* Swapping buffers schedules a `frame` event.
*/
bool wlr_output_swap_buffers(struct wlr_output *output, struct timespec *when,
pixman_region32_t *damage);
2018-01-26 21:39:23 +00:00
/**
* Manually schedules a `frame` event. If a `frame` event is already pending,
* it is a no-op.
*/
void wlr_output_schedule_frame(struct wlr_output *output);
2018-07-22 16:23:34 +00:00
/**
* Returns the maximum length of each gamma ramp, or 0 if unsupported.
*/
uint32_t wlr_output_get_gamma_size(struct wlr_output *output);
/**
* Sets the gamma table for this output. `r`, `g` and `b` are gamma ramps for
* red, green and blue. `size` is the length of the ramps and must not exceed
* the value returned by `wlr_output_get_gamma_size`.
*
* Providing zero-sized ramps resets the gamma table.
2018-07-22 16:23:34 +00:00
*/
bool wlr_output_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);
bool wlr_output_export_dmabuf(struct wlr_output *output,
struct wlr_dmabuf_attributes *attribs);
2017-11-20 16:27:36 +00:00
void wlr_output_set_fullscreen_surface(struct wlr_output *output,
struct wlr_surface *surface);
struct wlr_output *wlr_output_from_resource(struct wl_resource *resource);
/**
* Locks the output to only use software cursors instead of hardware cursors.
* This is useful if hardware cursors need to be temporarily disabled (e.g.
* during screen capture). There must be as many unlocks as there have been
* locks to restore the original state. There should never be an unlock before
* a lock.
*/
void wlr_output_lock_software_cursors(struct wlr_output *output, bool lock);
2018-01-21 10:11:25 +00:00
2017-10-29 08:09:21 +00:00
struct wlr_output_cursor *wlr_output_cursor_create(struct wlr_output *output);
/**
* Sets the cursor image. The image must be already scaled for the output.
*/
2017-10-29 08:09:21 +00:00
bool wlr_output_cursor_set_image(struct wlr_output_cursor *cursor,
const uint8_t *pixels, int32_t stride, uint32_t width, uint32_t height,
int32_t hotspot_x, int32_t hotspot_y);
void wlr_output_cursor_set_surface(struct wlr_output_cursor *cursor,
struct wlr_surface *surface, int32_t hotspot_x, int32_t hotspot_y);
bool wlr_output_cursor_move(struct wlr_output_cursor *cursor,
double x, double y);
2017-10-29 08:09:21 +00:00
void wlr_output_cursor_destroy(struct wlr_output_cursor *cursor);
2017-12-27 10:17:25 +00:00
/**
* Returns the transform that, when composed with `tr`, gives
* `WL_OUTPUT_TRANSFORM_NORMAL`.
*/
enum wl_output_transform wlr_output_transform_invert(
enum wl_output_transform tr);
2017-12-27 10:17:25 +00:00
/**
* Returns a transform that, when applied, has the same effect as applying
* sequentially `tr_a` and `tr_b`.
*/
enum wl_output_transform wlr_output_transform_compose(
enum wl_output_transform tr_a, enum wl_output_transform tr_b);
2017-11-30 22:58:12 +00:00
#endif