aboutsummaryrefslogtreecommitdiff
path: root/include/wlr/render
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2018-01-21 19:03:10 -0500
committerTony Crisci <tony@dubstepdish.com>2018-01-21 19:03:10 -0500
commit85a6939cf2753fd6a7fa84c9fcd370a4fb1f4095 (patch)
tree7944fa34611819667c2efc9df04d321e2e09a6aa /include/wlr/render
parente8c407d00e9acaff27973af8df4eaf19b6571d88 (diff)
rename matrix model box to project box
Diffstat (limited to 'include/wlr/render')
-rw-r--r--include/wlr/render/matrix.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/wlr/render/matrix.h b/include/wlr/render/matrix.h
index dbd06c8d..a333bf0f 100644
--- a/include/wlr/render/matrix.h
+++ b/include/wlr/render/matrix.h
@@ -15,7 +15,8 @@ void wlr_matrix_transform(float mat[static 16],
enum wl_output_transform transform);
void wlr_matrix_texture(float mat[static 16], int32_t width, int32_t height,
enum wl_output_transform transform);
-void wlr_matrix_box_model(float (*mat)[16], struct wlr_box *box,
- enum wl_output_transform transform, float rotation);
+void wlr_matrix_project_box(float (*mat)[16], struct wlr_box *box,
+ enum wl_output_transform transform, float rotation, float
+ (*projection)[16]);
#endif