2020-07-28 16:56:18 +02:00
|
|
|
#ifndef RENDER_WLR_RENDERER_H
|
|
|
|
#define RENDER_WLR_RENDERER_H
|
|
|
|
|
|
|
|
#include <wlr/render/wlr_renderer.h>
|
|
|
|
|
2021-01-16 22:26:44 +01:00
|
|
|
/**
|
|
|
|
* Automatically select and create a renderer suitable for the DRM FD.
|
|
|
|
*/
|
2021-04-29 09:46:34 +02:00
|
|
|
struct wlr_renderer *renderer_autocreate_with_drm_fd(int drm_fd);
|
2021-01-14 12:16:51 +01:00
|
|
|
/**
|
|
|
|
* Bind a buffer to the renderer.
|
|
|
|
*
|
|
|
|
* All subsequent rendering operations will operate on the supplied buffer.
|
|
|
|
* After rendering operations are done, the caller must unbind a buffer by
|
|
|
|
* calling wlr_renderer_bind_buffer with a NULL buffer.
|
|
|
|
*/
|
2020-07-28 16:56:18 +02:00
|
|
|
bool wlr_renderer_bind_buffer(struct wlr_renderer *r, struct wlr_buffer *buffer);
|
2020-11-18 14:16:22 +01:00
|
|
|
/**
|
2021-04-15 16:22:06 +02:00
|
|
|
* Get the supported render formats. Buffers allocated with a format from this
|
|
|
|
* list may be attached via wlr_renderer_bind_buffer.
|
2020-11-18 14:16:22 +01:00
|
|
|
*/
|
2021-04-15 16:22:06 +02:00
|
|
|
const struct wlr_drm_format_set *wlr_renderer_get_render_formats(
|
2020-11-18 14:16:22 +01:00
|
|
|
struct wlr_renderer *renderer);
|
2021-04-23 19:51:05 +02:00
|
|
|
/**
|
|
|
|
* Get the supported buffer capabilities.
|
|
|
|
*
|
|
|
|
* This functions returns a bitfield of supported wlr_buffer_cap.
|
|
|
|
*/
|
|
|
|
uint32_t renderer_get_render_buffer_caps(struct wlr_renderer *renderer);
|
2020-07-28 16:56:18 +02:00
|
|
|
|
|
|
|
#endif
|