From e167f41fde7532ca453a9a70ad1e3f27d7177071 Mon Sep 17 00:00:00 2001 From: nyorain Date: Tue, 8 Aug 2017 18:02:14 +0200 Subject: Rename wlr_surface -> wlr_texture; attach -> upload --- render/wlr_surface.c | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 render/wlr_surface.c (limited to 'render/wlr_surface.c') diff --git a/render/wlr_surface.c b/render/wlr_surface.c deleted file mode 100644 index 4e4f4101..00000000 --- a/render/wlr_surface.c +++ /dev/null @@ -1,36 +0,0 @@ -#include -#include -#include - -struct wlr_surface *wlr_surface_init(struct wlr_surface_state *state, - struct wlr_surface_impl *impl) { - struct wlr_surface *s = calloc(sizeof(struct wlr_surface), 1); - s->state = state; - s->impl = impl; - return s; -} - -void wlr_surface_destroy(struct wlr_surface *surface) { - surface->impl->destroy(surface->state); - free(surface); -} - -void wlr_surface_bind(struct wlr_surface *surface) { - surface->impl->bind(surface->state); -} - -bool wlr_surface_attach_pixels(struct wlr_surface *surface, uint32_t format, - int stride, int width, int height, const unsigned char *pixels) { - return surface->impl->attach_pixels(surface->state, - format, stride, width, height, pixels); -} - -bool wlr_surface_attach_shm(struct wlr_surface *surface, uint32_t format, - struct wl_shm_buffer *shm) { - return surface->impl->attach_shm(surface->state, format, shm); -} - -void wlr_surface_get_matrix(struct wlr_surface *surface, - float (*matrix)[16], const float (*projection)[16], int x, int y) { - surface->impl->get_matrix(surface->state, matrix, projection, x, y); -} -- cgit v1.2.3