2020-07-28 14:56:18 +00:00
|
|
|
#ifndef RENDER_WLR_RENDERER_H
|
|
|
|
#define RENDER_WLR_RENDERER_H
|
|
|
|
|
|
|
|
#include <wlr/render/wlr_renderer.h>
|
|
|
|
|
2021-01-16 21:26:44 +00:00
|
|
|
/**
|
|
|
|
* Automatically select and create a renderer suitable for the DRM FD.
|
|
|
|
*/
|
2021-04-29 07:46:34 +00:00
|
|
|
struct wlr_renderer *renderer_autocreate_with_drm_fd(int drm_fd);
|
2021-01-14 11:16:51 +00: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 14:56:18 +00:00
|
|
|
bool wlr_renderer_bind_buffer(struct wlr_renderer *r, struct wlr_buffer *buffer);
|
2020-11-18 13:16:22 +00:00
|
|
|
/**
|
2021-04-15 14:22:06 +00: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 13:16:22 +00:00
|
|
|
*/
|
2021-04-15 14:22:06 +00:00
|
|
|
const struct wlr_drm_format_set *wlr_renderer_get_render_formats(
|
2020-11-18 13:16:22 +00:00
|
|
|
struct wlr_renderer *renderer);
|
2021-04-23 17:51:05 +00: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 14:56:18 +00:00
|
|
|
|
|
|
|
#endif
|