2018-03-19 23:16:29 +01:00
|
|
|
#ifndef WLR_RENDER_WLR_TEXTURE_H
|
|
|
|
#define WLR_RENDER_WLR_TEXTURE_H
|
|
|
|
|
|
|
|
#include <EGL/egl.h>
|
|
|
|
#include <EGL/eglext.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <wayland-server-protocol.h>
|
2018-05-29 23:38:00 +02:00
|
|
|
#include <wlr/render/dmabuf.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
|
2018-03-24 23:30:28 +01:00
|
|
|
struct wlr_renderer;
|
2018-03-19 23:16:29 +01:00
|
|
|
struct wlr_texture_impl;
|
|
|
|
|
|
|
|
struct wlr_texture {
|
2018-03-20 19:14:33 +01:00
|
|
|
const struct wlr_texture_impl *impl;
|
2018-03-19 23:16:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2018-03-24 23:30:28 +01:00
|
|
|
* Create a new texture from raw pixel data. `stride` is in bytes. The returned
|
|
|
|
* texture is mutable.
|
2018-03-19 23:16:29 +01:00
|
|
|
*/
|
2018-03-24 23:30:28 +01:00
|
|
|
struct wlr_texture *wlr_texture_from_pixels(struct wlr_renderer *renderer,
|
|
|
|
enum wl_shm_format wl_fmt, uint32_t stride, uint32_t width, uint32_t height,
|
|
|
|
const void *data);
|
|
|
|
|
2018-03-19 23:16:29 +01:00
|
|
|
/**
|
2018-04-01 05:20:00 +02:00
|
|
|
* Create a new texture from a wl_drm resource. The returned texture is
|
2018-03-24 23:30:28 +01:00
|
|
|
* immutable.
|
2018-03-19 23:16:29 +01:00
|
|
|
*/
|
2018-03-24 23:30:28 +01:00
|
|
|
struct wlr_texture *wlr_texture_from_wl_drm(struct wlr_renderer *renderer,
|
|
|
|
struct wl_resource *data);
|
|
|
|
|
2018-03-19 23:16:29 +01:00
|
|
|
/**
|
2018-03-24 23:30:28 +01:00
|
|
|
* Create a new texture from a DMA-BUF. The returned texture is immutable.
|
2018-03-19 23:16:29 +01:00
|
|
|
*/
|
2018-03-24 23:30:28 +01:00
|
|
|
struct wlr_texture *wlr_texture_from_dmabuf(struct wlr_renderer *renderer,
|
2018-05-29 23:38:00 +02:00
|
|
|
struct wlr_dmabuf_attributes *attribs);
|
2018-03-24 23:30:28 +01:00
|
|
|
|
2018-03-19 23:16:29 +01:00
|
|
|
/**
|
2018-03-24 23:30:28 +01:00
|
|
|
* Get the texture width and height.
|
2018-03-19 23:16:29 +01:00
|
|
|
*/
|
2018-03-24 23:30:28 +01:00
|
|
|
void wlr_texture_get_size(struct wlr_texture *texture, int *width, int *height);
|
2018-03-19 23:16:29 +01:00
|
|
|
|
2018-07-13 00:35:33 +02:00
|
|
|
/**
|
|
|
|
* Returns true if this texture is using a fully opaque format.
|
|
|
|
*/
|
|
|
|
bool wlr_texture_is_opaque(struct wlr_texture *texture);
|
|
|
|
|
2018-03-19 23:16:29 +01:00
|
|
|
/**
|
2018-03-24 23:30:28 +01:00
|
|
|
* Update a texture with raw pixels. The texture must be mutable.
|
2018-03-19 23:16:29 +01:00
|
|
|
*/
|
2018-03-24 23:30:28 +01:00
|
|
|
bool wlr_texture_write_pixels(struct wlr_texture *texture,
|
|
|
|
enum wl_shm_format wl_fmt, uint32_t stride, uint32_t width, uint32_t height,
|
|
|
|
uint32_t src_x, uint32_t src_y, uint32_t dst_x, uint32_t dst_y,
|
|
|
|
const void *data);
|
|
|
|
|
2018-05-23 01:03:26 +02:00
|
|
|
bool wlr_texture_to_dmabuf(struct wlr_texture *texture,
|
2018-05-31 13:33:27 +02:00
|
|
|
struct wlr_dmabuf_attributes *attribs);
|
2018-05-23 01:03:26 +02:00
|
|
|
|
2018-03-19 23:16:29 +01:00
|
|
|
/**
|
|
|
|
* Destroys this wlr_texture.
|
|
|
|
*/
|
|
|
|
void wlr_texture_destroy(struct wlr_texture *texture);
|
|
|
|
|
|
|
|
#endif
|