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-21 06:37:25 +02:00
|
|
|
#include <wlr/types/wlr_output.h>
|
2017-06-20 00:41:02 +02:00
|
|
|
|
2021-06-18 12:15:08 +02:00
|
|
|
/**
|
|
|
|
* Output state fields that don't require backend support. Backends can ignore
|
|
|
|
* them without breaking the API contract.
|
|
|
|
*/
|
|
|
|
#define WLR_OUTPUT_STATE_BACKEND_OPTIONAL \
|
|
|
|
(WLR_OUTPUT_STATE_DAMAGE | \
|
|
|
|
WLR_OUTPUT_STATE_SCALE | \
|
|
|
|
WLR_OUTPUT_STATE_TRANSFORM | \
|
2021-11-11 05:20:10 +01:00
|
|
|
WLR_OUTPUT_STATE_RENDER_FORMAT | \
|
2022-06-28 18:22:42 +02:00
|
|
|
WLR_OUTPUT_STATE_SUBPIXEL | \
|
|
|
|
WLR_OUTPUT_STATE_LAYERS)
|
2021-06-18 12:15:08 +02:00
|
|
|
|
2020-06-19 17:44:32 +02:00
|
|
|
/**
|
2022-05-24 18:46:59 +02:00
|
|
|
* A backend implementation of struct wlr_output.
|
2020-06-19 17:44:32 +02:00
|
|
|
*
|
2020-12-01 16:22:42 +01:00
|
|
|
* The commit function is mandatory. Other functions are optional.
|
2020-06-19 17:44:32 +02:00
|
|
|
*/
|
2017-06-20 00:41:02 +02:00
|
|
|
struct wlr_output_impl {
|
2020-06-19 17:44:32 +02:00
|
|
|
/**
|
|
|
|
* Set the output cursor plane image.
|
|
|
|
*
|
2020-12-04 16:41:16 +01:00
|
|
|
* If buffer is NULL, the cursor should be hidden.
|
2020-06-19 17:44:32 +02:00
|
|
|
*
|
|
|
|
* The hotspot indicates the offset that needs to be applied to the
|
|
|
|
* top-left corner of the image to match the cursor position. In other
|
|
|
|
* words, the image should be displayed at (x - hotspot_x, y - hotspot_y).
|
2022-05-24 18:46:59 +02:00
|
|
|
* The hotspot is given in the buffer's coordinate space.
|
2020-06-19 17:44:32 +02:00
|
|
|
*/
|
2020-12-04 16:41:16 +01:00
|
|
|
bool (*set_cursor)(struct wlr_output *output, struct wlr_buffer *buffer,
|
|
|
|
int hotspot_x, int hotspot_y);
|
2020-06-19 17:44:32 +02:00
|
|
|
/**
|
|
|
|
* Set the output cursor plane position.
|
|
|
|
*
|
|
|
|
* The position is relative to the cursor hotspot, see set_cursor.
|
|
|
|
*/
|
2017-08-13 16:51:50 +02:00
|
|
|
bool (*move_cursor)(struct wlr_output *output, int x, int y);
|
2020-06-19 17:44:32 +02:00
|
|
|
/**
|
|
|
|
* Cleanup backend-specific resources tied to the output.
|
|
|
|
*/
|
2017-08-13 16:51:50 +02:00
|
|
|
void (*destroy)(struct wlr_output *output);
|
2020-06-19 17:44:32 +02:00
|
|
|
/**
|
2022-05-24 19:16:50 +02:00
|
|
|
* Check that the supplied output state is a valid configuration.
|
2020-06-19 17:44:32 +02:00
|
|
|
*
|
|
|
|
* If this function returns true, commit can only fail due to a runtime
|
|
|
|
* error.
|
|
|
|
*/
|
2022-05-24 19:16:50 +02:00
|
|
|
bool (*test)(struct wlr_output *output, const struct wlr_output_state *state);
|
2020-06-19 17:44:32 +02:00
|
|
|
/**
|
2022-05-24 19:16:50 +02:00
|
|
|
* Commit the supplied output state.
|
2020-06-19 17:44:32 +02:00
|
|
|
*
|
|
|
|
* If a buffer has been attached, a frame event is scheduled.
|
|
|
|
*/
|
2022-05-24 19:16:50 +02:00
|
|
|
bool (*commit)(struct wlr_output *output, const struct wlr_output_state *state);
|
2020-06-19 17:44:32 +02:00
|
|
|
/**
|
|
|
|
* Get the maximum number of gamma LUT elements for each channel.
|
|
|
|
*
|
|
|
|
* Zero can be returned if the output doesn't support gamma LUTs.
|
|
|
|
*/
|
2018-10-03 10:36:33 +02:00
|
|
|
size_t (*get_gamma_size)(struct wlr_output *output);
|
2020-12-02 10:35:27 +01:00
|
|
|
/**
|
|
|
|
* Get the list of formats suitable for the cursor, assuming a buffer with
|
|
|
|
* the specified capabilities.
|
|
|
|
*
|
|
|
|
* If unimplemented, the cursor buffer has no format constraint. If NULL is
|
|
|
|
* returned, no format is suitable.
|
|
|
|
*/
|
|
|
|
const struct wlr_drm_format_set *(*get_cursor_formats)(
|
|
|
|
struct wlr_output *output, uint32_t buffer_caps);
|
|
|
|
/**
|
|
|
|
* Get the size suitable for the cursor buffer. Attempts to use a different
|
|
|
|
* size for the cursor may fail.
|
|
|
|
*/
|
|
|
|
void (*get_cursor_size)(struct wlr_output *output, int *width, int *height);
|
2020-12-01 16:21:10 +01:00
|
|
|
/**
|
2021-11-30 20:33:36 +01:00
|
|
|
* Get the list of DRM formats suitable for the primary buffer,
|
2020-12-01 16:21:10 +01:00
|
|
|
* assuming a buffer with the specified capabilities.
|
|
|
|
*
|
|
|
|
* If unimplemented, the primary buffer has no format constraint. If NULL
|
|
|
|
* is returned, no format is suitable.
|
|
|
|
*/
|
|
|
|
const struct wlr_drm_format_set *(*get_primary_formats)(
|
|
|
|
struct wlr_output *output, uint32_t buffer_caps);
|
2017-06-20 00:41:02 +02:00
|
|
|
};
|
|
|
|
|
2020-06-19 17:44:32 +02:00
|
|
|
/**
|
|
|
|
* Initialize a new output.
|
|
|
|
*/
|
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);
|
2020-06-19 17:44:32 +02:00
|
|
|
/**
|
|
|
|
* Update the current output mode.
|
|
|
|
*
|
|
|
|
* The backend must call this function when the mode is updated to notify
|
|
|
|
* compositors about the change.
|
|
|
|
*/
|
2017-12-17 18:02:55 +01:00
|
|
|
void wlr_output_update_mode(struct wlr_output *output,
|
|
|
|
struct wlr_output_mode *mode);
|
2020-06-19 17:44:32 +02:00
|
|
|
/**
|
|
|
|
* Update the current output custom mode.
|
|
|
|
*
|
|
|
|
* The backend must call this function when the mode is updated to notify
|
|
|
|
* compositors about the change.
|
|
|
|
*/
|
2017-12-17 18:02:55 +01:00
|
|
|
void wlr_output_update_custom_mode(struct wlr_output *output, int32_t width,
|
|
|
|
int32_t height, int32_t refresh);
|
2020-06-19 17:44:32 +02:00
|
|
|
/**
|
|
|
|
* Update the current output status.
|
|
|
|
*
|
|
|
|
* The backend must call this function when the status is updated to notify
|
|
|
|
* compositors about the change.
|
|
|
|
*/
|
2018-01-04 12:46:15 +01:00
|
|
|
void wlr_output_update_enabled(struct wlr_output *output, bool enabled);
|
2020-06-19 17:44:32 +02:00
|
|
|
/**
|
|
|
|
* Notify compositors that they need to submit a new frame in order to apply
|
|
|
|
* output changes.
|
|
|
|
*/
|
2019-04-23 19:22:42 +02:00
|
|
|
void wlr_output_update_needs_frame(struct wlr_output *output);
|
2020-06-19 17:44:32 +02:00
|
|
|
/**
|
|
|
|
* Send a frame event.
|
|
|
|
*
|
|
|
|
* See wlr_output.events.frame.
|
|
|
|
*/
|
2018-01-26 22:39:23 +01:00
|
|
|
void wlr_output_send_frame(struct wlr_output *output);
|
2020-06-19 17:44:32 +02:00
|
|
|
/**
|
|
|
|
* Send a present event.
|
|
|
|
*
|
|
|
|
* See wlr_output.events.present.
|
|
|
|
*/
|
2018-10-02 12:11:09 +02:00
|
|
|
void wlr_output_send_present(struct wlr_output *output,
|
|
|
|
struct wlr_output_event_present *event);
|
2021-01-28 16:04:17 +01:00
|
|
|
/**
|
|
|
|
* Request the compositor to apply new state.
|
|
|
|
*/
|
|
|
|
void wlr_output_send_request_state(struct wlr_output *output,
|
|
|
|
const struct wlr_output_state *state);
|
2017-06-20 00:41:02 +02:00
|
|
|
|
|
|
|
#endif
|