diff options
author | Scott Anderson <ascent12@hotmail.com> | 2017-06-07 16:43:57 +1200 |
---|---|---|
committer | Scott Anderson <ascent12@hotmail.com> | 2017-06-07 16:43:57 +1200 |
commit | 53dd622263cb2b952a148463cfb046ba084d57ac (patch) | |
tree | 5a6e746a8d5e89929cd4f603045a6d2799ce5113 /include/wlr | |
parent | 6f5c70ac690dcb8981d160a9480f27f6bef7494c (diff) |
Provide user with transformation matrix
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/wlr/types.h b/include/wlr/types.h index 5de80a60..27819f56 100644 --- a/include/wlr/types.h +++ b/include/wlr/types.h @@ -32,6 +32,8 @@ struct wlr_output { int32_t subpixel; // enum wl_output_subpixel int32_t transform; // enum wl_output_transform + float transform_matrix[16]; + list_t *modes; struct wlr_output_mode *current_mode; |