aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-03-15 21:26:45 +0100
committeremersion <contact@emersion.fr>2018-03-15 21:26:45 +0100
commit7894fca22498f79f73b8f3c5853dd22a1727cd1c (patch)
treec7cb5e0284abd8ca9ca4bd1ea2353fc3a2af210c /include
parent876f07e9f13946609047e8e32ca7918548315e1c (diff)
matrix: rename wlr_matrix_texture to wlr_matrix_projection
Diffstat (limited to 'include')
-rw-r--r--include/wlr/types/wlr_matrix.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/wlr/types/wlr_matrix.h b/include/wlr/types/wlr_matrix.h
index 5255980a..fd060d11 100644
--- a/include/wlr/types/wlr_matrix.h
+++ b/include/wlr/types/wlr_matrix.h
@@ -1,7 +1,6 @@
#ifndef WLR_TYPES_WLR_MATRIX_H
#define WLR_TYPES_WLR_MATRIX_H
-#include <stdint.h>
#include <wayland-server.h>
#include <wlr/types/wlr_box.h>
@@ -13,8 +12,7 @@ void wlr_matrix_multiply(float mat[static 9], const float a[static 9],
const float b[static 9]);
void wlr_matrix_transform(float mat[static 9],
enum wl_output_transform transform);
-
-void wlr_matrix_texture(float mat[static 9], int32_t width, int32_t height,
+void wlr_matrix_projection(float mat[static 9], int width, int height,
enum wl_output_transform transform);
void wlr_matrix_project_box(float mat[static 9], const struct wlr_box *box,
enum wl_output_transform transform, float rotation,