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
|
|
|
|
|
2018-03-19 23:16:29 +01:00
|
|
|
#ifndef WLR_RENDER_WLR_TEXTURE_H
|
|
|
|
#define WLR_RENDER_WLR_TEXTURE_H
|
|
|
|
|
2022-05-29 11:50:47 +02:00
|
|
|
#include <pixman.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <stdint.h>
|
2021-02-16 20:00:52 +01:00
|
|
|
#include <wayland-server-core.h>
|
2018-05-29 23:38:00 +02:00
|
|
|
#include <wlr/render/dmabuf.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
|
2021-07-13 01:18:50 +02:00
|
|
|
struct wlr_buffer;
|
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;
|
2020-04-27 12:45:21 +02:00
|
|
|
uint32_t width, height;
|
2022-12-01 10:41:43 +01:00
|
|
|
|
|
|
|
struct wlr_renderer *renderer;
|
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,
|
2021-02-16 19:41:40 +01:00
|
|
|
uint32_t fmt, uint32_t stride, uint32_t width, uint32_t height,
|
2018-03-24 23:30:28 +01:00
|
|
|
const void *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
|
|
|
/**
|
2022-05-29 11:50:47 +02:00
|
|
|
* Update a texture with a struct wlr_buffer's contents.
|
|
|
|
*
|
|
|
|
* The update might be rejected (in case the texture is immutable, the buffer
|
|
|
|
* has an unsupported type/format, etc), so callers must be prepared to fall
|
|
|
|
* back to re-creating the texture from scratch via wlr_texture_from_buffer().
|
|
|
|
*
|
|
|
|
* The damage can be used by the renderer as an optimization: only the supplied
|
|
|
|
* region needs to be updated.
|
2018-10-16 09:35:28 +02:00
|
|
|
*/
|
2022-05-29 11:50:47 +02:00
|
|
|
bool wlr_texture_update_from_buffer(struct wlr_texture *texture,
|
2022-10-24 12:54:03 +02:00
|
|
|
struct wlr_buffer *buffer, const pixman_region32_t *damage);
|
2018-03-24 23:30:28 +01:00
|
|
|
|
2018-03-19 23:16:29 +01:00
|
|
|
/**
|
2022-05-24 18:46:59 +02:00
|
|
|
* Destroys the texture.
|
2018-03-19 23:16:29 +01:00
|
|
|
*/
|
|
|
|
void wlr_texture_destroy(struct wlr_texture *texture);
|
|
|
|
|
2021-07-13 01:18:50 +02:00
|
|
|
/**
|
|
|
|
* Create a new texture from a buffer.
|
|
|
|
*/
|
|
|
|
struct wlr_texture *wlr_texture_from_buffer(struct wlr_renderer *renderer,
|
|
|
|
struct wlr_buffer *buffer);
|
|
|
|
|
2018-03-19 23:16:29 +01:00
|
|
|
#endif
|