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 10:26:01 +02:00
|
|
|
#ifndef WLR_RENDER_GLES2_H
|
|
|
|
#define WLR_RENDER_GLES2_H
|
|
|
|
|
2017-08-11 04:15:37 +02:00
|
|
|
#include <wlr/backend.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <wlr/render/wlr_renderer.h>
|
2017-06-23 17:38:45 +02:00
|
|
|
|
2017-08-09 21:25:34 +02:00
|
|
|
struct wlr_egl;
|
2018-04-01 00:49:43 +02:00
|
|
|
|
|
|
|
struct wlr_renderer *wlr_gles2_renderer_create(struct wlr_egl *egl);
|
2017-06-23 17:38:45 +02:00
|
|
|
|
2018-04-01 22:07:50 +02:00
|
|
|
struct wlr_texture *wlr_gles2_texture_from_pixels(struct wlr_egl *egl,
|
|
|
|
enum wl_shm_format wl_fmt, uint32_t stride, uint32_t width, uint32_t height,
|
|
|
|
const void *data);
|
|
|
|
struct wlr_texture *wlr_gles2_texture_from_wl_drm(struct wlr_egl *egl,
|
|
|
|
struct wl_resource *data);
|
|
|
|
struct wlr_texture *wlr_gles2_texture_from_dmabuf(struct wlr_egl *egl,
|
2018-05-29 23:38:00 +02:00
|
|
|
struct wlr_dmabuf_attributes *attribs);
|
2018-04-01 22:07:50 +02:00
|
|
|
|
2017-06-23 17:38:45 +02:00
|
|
|
#endif
|