aboutsummaryrefslogtreecommitdiff
path: root/include/wlr/render
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-03-15 15:33:58 +0100
committeremersion <contact@emersion.fr>2018-03-15 15:33:58 +0100
commit824a95ad19062e867178593f0937d14049422989 (patch)
tree1ad1793d6e7379979340eff1f0385afa549ea58d /include/wlr/render
parentd26b67cb06509fb39d9ed473a5d27b1f241ff635 (diff)
matrix: use 2D matrices
Diffstat (limited to 'include/wlr/render')
-rw-r--r--include/wlr/render/interface.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/wlr/render/interface.h b/include/wlr/render/interface.h
index 4d81bdf9..03b8309f 100644
--- a/include/wlr/render/interface.h
+++ b/include/wlr/render/interface.h
@@ -21,13 +21,13 @@ struct wlr_renderer_impl {
void (*clear)(struct wlr_renderer *renderer, const float color[static 4]);
void (*scissor)(struct wlr_renderer *renderer, struct wlr_box *box);
struct wlr_texture *(*texture_create)(struct wlr_renderer *renderer);
- bool (*render_with_matrix)(struct wlr_renderer *renderer,
- struct wlr_texture *texture, const float matrix[static 16],
+ bool (*render_texture_with_matrix)(struct wlr_renderer *renderer,
+ struct wlr_texture *texture, const float matrix[static 9],
float alpha);
void (*render_quad)(struct wlr_renderer *renderer,
- const float color[static 4], const float matrix[static 16]);
+ const float color[static 4], const float matrix[static 9]);
void (*render_ellipse)(struct wlr_renderer *renderer,
- const float color[static 4], const float matrix[static 16]);
+ const float color[static 4], const float matrix[static 9]);
const enum wl_shm_format *(*formats)(
struct wlr_renderer *renderer, size_t *len);
bool (*buffer_is_drm)(struct wlr_renderer *renderer,
@@ -59,8 +59,8 @@ struct wlr_texture_impl {
struct wl_resource *drm_buf);
bool (*upload_eglimage)(struct wlr_texture *texture, EGLImageKHR image,
uint32_t width, uint32_t height);
- void (*get_matrix)(struct wlr_texture *state, float mat[static 16],
- const float projection[static 16], int x, int y);
+ void (*get_matrix)(struct wlr_texture *state, float mat[static 9],
+ const float projection[static 9], int x, int y);
void (*get_buffer_size)(struct wlr_texture *texture,
struct wl_resource *resource, int *width, int *height);
void (*bind)(struct wlr_texture *texture);