2018-07-13 08:40:56 -04: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
|
|
|
|
|
|
2018-03-19 23:16:29 +01:00
|
|
|
#ifndef WLR_RENDER_WLR_RENDERER_H
|
|
|
|
|
#define WLR_RENDER_WLR_RENDERER_H
|
|
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2021-02-16 20:00:52 +01:00
|
|
|
#include <wayland-server-core.h>
|
2023-08-16 19:18:05 +02:00
|
|
|
#include <wlr/render/pass.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <wlr/render/wlr_texture.h>
|
2022-06-21 22:39:29 +02:00
|
|
|
#include <wlr/util/box.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
|
2022-11-23 14:29:58 +01:00
|
|
|
struct wlr_backend;
|
2018-04-26 00:11:36 +01:00
|
|
|
struct wlr_renderer_impl;
|
2019-04-01 19:17:23 +03:00
|
|
|
struct wlr_drm_format_set;
|
2020-07-28 16:56:18 +02:00
|
|
|
struct wlr_buffer;
|
2021-07-01 16:36:01 -04:00
|
|
|
struct wlr_box;
|
|
|
|
|
struct wlr_fbox;
|
2018-03-19 23:16:29 +01:00
|
|
|
|
2022-11-15 10:40:06 +01:00
|
|
|
/**
|
|
|
|
|
* A renderer for basic 2D operations.
|
|
|
|
|
*/
|
2018-04-26 00:11:36 +01:00
|
|
|
struct wlr_renderer {
|
2024-03-21 12:28:10 +01:00
|
|
|
// Capabilities required for the buffer used as a render target (bitmask of
|
|
|
|
|
// enum wlr_buffer_cap)
|
|
|
|
|
uint32_t render_buffer_caps;
|
|
|
|
|
|
2022-11-15 10:40:55 +01:00
|
|
|
struct {
|
|
|
|
|
struct wl_signal destroy;
|
2022-11-13 17:08:00 +01:00
|
|
|
/**
|
|
|
|
|
* Emitted when the GPU is lost, e.g. on GPU reset.
|
|
|
|
|
*
|
|
|
|
|
* Compositors should destroy the renderer and re-create it.
|
|
|
|
|
*/
|
|
|
|
|
struct wl_signal lost;
|
2022-11-15 10:40:55 +01:00
|
|
|
} events;
|
|
|
|
|
|
2024-04-14 12:20:08 -04:00
|
|
|
struct {
|
|
|
|
|
/**
|
|
|
|
|
* Does the renderer support color transforms on its output?
|
|
|
|
|
*/
|
|
|
|
|
bool output_color_transform;
|
2023-07-10 10:53:12 +02:00
|
|
|
/**
|
|
|
|
|
* Whether wait/signal timelines are supported.
|
|
|
|
|
*
|
|
|
|
|
* See struct wlr_drm_syncobj_timeline.
|
|
|
|
|
*/
|
|
|
|
|
bool timeline;
|
2024-04-14 12:20:08 -04:00
|
|
|
} features;
|
|
|
|
|
|
2024-10-05 11:37:22 +03:00
|
|
|
struct {
|
|
|
|
|
const struct wlr_renderer_impl *impl;
|
|
|
|
|
} WLR_PRIVATE;
|
2018-04-26 00:11:36 +01:00
|
|
|
};
|
2018-03-19 23:16:29 +01:00
|
|
|
|
2022-11-15 10:40:06 +01:00
|
|
|
/**
|
|
|
|
|
* Automatically create a new renderer.
|
|
|
|
|
*
|
|
|
|
|
* Selects an appropriate renderer type to use depending on the backend,
|
|
|
|
|
* platform, environment, etc.
|
|
|
|
|
*/
|
2021-01-13 22:49:07 -05:00
|
|
|
struct wlr_renderer *wlr_renderer_autocreate(struct wlr_backend *backend);
|
2018-05-25 13:14:35 +03:00
|
|
|
|
2018-03-19 23:16:29 +01:00
|
|
|
/**
|
2024-04-12 11:27:57 +02:00
|
|
|
* Get the formats supporting sampling usage.
|
|
|
|
|
*
|
|
|
|
|
* The buffer capabilities must be passed in.
|
|
|
|
|
*
|
|
|
|
|
* Buffers allocated with a format from this list may be passed to
|
|
|
|
|
* wlr_texture_from_buffer().
|
2018-03-19 23:16:29 +01:00
|
|
|
*/
|
2024-04-12 11:27:57 +02:00
|
|
|
const struct wlr_drm_format_set *wlr_renderer_get_texture_formats(
|
|
|
|
|
struct wlr_renderer *r, uint32_t buffer_caps);
|
2020-04-22 23:23:56 +00:00
|
|
|
|
2020-03-23 14:32:27 +01:00
|
|
|
/**
|
2021-06-07 16:31:53 +02:00
|
|
|
* Initializes wl_shm, linux-dmabuf and other buffer factory protocols.
|
2020-03-23 14:32:27 +01:00
|
|
|
*
|
|
|
|
|
* Returns false on failure.
|
|
|
|
|
*/
|
|
|
|
|
bool wlr_renderer_init_wl_display(struct wlr_renderer *r,
|
2018-05-21 19:07:08 +01:00
|
|
|
struct wl_display *wl_display);
|
2019-11-07 13:38:45 -05:00
|
|
|
|
2021-06-07 16:31:53 +02:00
|
|
|
/**
|
2022-05-24 18:46:59 +02:00
|
|
|
* Initializes wl_shm on the provided struct wl_display.
|
2021-06-07 16:31:53 +02:00
|
|
|
*/
|
|
|
|
|
bool wlr_renderer_init_wl_shm(struct wlr_renderer *r,
|
|
|
|
|
struct wl_display *wl_display);
|
|
|
|
|
|
2020-06-10 14:47:12 +02:00
|
|
|
/**
|
|
|
|
|
* Obtains the FD of the DRM device used for rendering, or -1 if unavailable.
|
|
|
|
|
*
|
|
|
|
|
* The caller doesn't have ownership of the FD, it must not close it.
|
|
|
|
|
*/
|
|
|
|
|
int wlr_renderer_get_drm_fd(struct wlr_renderer *r);
|
|
|
|
|
|
2018-03-19 23:16:29 +01:00
|
|
|
/**
|
2022-05-24 18:46:59 +02:00
|
|
|
* Destroys the renderer.
|
|
|
|
|
*
|
|
|
|
|
* Textures must be destroyed separately.
|
2018-03-19 23:16:29 +01:00
|
|
|
*/
|
|
|
|
|
void wlr_renderer_destroy(struct wlr_renderer *renderer);
|
|
|
|
|
|
2023-06-02 10:25:07 +01:00
|
|
|
/**
|
|
|
|
|
* Allocate and initialise a new render timer.
|
|
|
|
|
*/
|
|
|
|
|
struct wlr_render_timer *wlr_render_timer_create(struct wlr_renderer *renderer);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the render duration in nanoseconds from the timer.
|
|
|
|
|
*
|
|
|
|
|
* Returns -1 if the duration is unavailable.
|
|
|
|
|
*/
|
|
|
|
|
int wlr_render_timer_get_duration_ns(struct wlr_render_timer *timer);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Destroy the render timer.
|
|
|
|
|
*/
|
|
|
|
|
void wlr_render_timer_destroy(struct wlr_render_timer *timer);
|
|
|
|
|
|
2018-03-19 23:16:29 +01:00
|
|
|
#endif
|