aboutsummaryrefslogtreecommitdiff
path: root/render/wlr_texture.c
blob: d2bcca07839117d9ad90160ebdc039687180a348 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include <stdlib.h>
#include <stdbool.h>
#include <wlr/render/interface.h>

void wlr_texture_init(struct wlr_texture *texture,
		struct wlr_texture_impl *impl) {
	texture->impl = impl;
	wl_signal_init(&texture->destroy_signal);
}

void wlr_texture_destroy(struct wlr_texture *texture) {
	if (texture->impl->destroy) {
		texture->impl->destroy(texture);
	}
}

void wlr_texture_bind(struct wlr_texture *texture) {
	texture->impl->bind(texture);
}

bool wlr_texture_upload_pixels(struct wlr_texture *texture, uint32_t format,
		int stride, int width, int height, const unsigned char *pixels) {
	return texture->impl->upload_pixels(texture, format, stride,
			width, height, pixels);
}

bool wlr_texture_update_pixels(struct wlr_texture *texture,
		enum wl_shm_format format, int stride, int x, int y,
		int width, int height, const unsigned char *pixels) {
	return texture->impl->update_pixels(texture, format, stride, x, y,
			width, height, pixels);
}

bool wlr_texture_upload_shm(struct wlr_texture *texture, uint32_t format,
		struct wl_shm_buffer *shm) {
	return texture->impl->upload_shm(texture, format, shm);
}

bool wlr_texture_update_shm(struct wlr_texture *texture, uint32_t format,
		int x, int y, int width, int height, struct wl_shm_buffer *shm) {
	return texture->impl->update_shm(texture, format, x, y, width, height, shm);
}

bool wlr_texture_upload_drm(struct wlr_texture *texture,
		struct wl_resource *drm_buffer) {
	return texture->impl->upload_drm(texture, drm_buffer);
}

void wlr_texture_get_matrix(struct wlr_texture *texture,
		float (*matrix)[16], const float (*projection)[16], int x, int y) {
	texture->impl->get_matrix(texture, matrix, projection, x, y);
}