diff options
author | Heghedus Razvan <heghedus.razvan@gmail.com> | 2017-10-15 13:32:37 +0300 |
---|---|---|
committer | Heghedus Razvan <heghedus.razvan@gmail.com> | 2017-10-20 11:46:09 +0300 |
commit | 1d716241afbc721c3ae65d4a2bb0e25866fe081c (patch) | |
tree | 890ed910ec48af6f0725f45a66b981469ac517be /include/wlr | |
parent | c03e7746367194b859125624b059c1725eb7ae30 (diff) |
Replace list_t with wl_list in wlr_output
Signed-off-by: Heghedus Razvan <heghedus.razvan@gmail.com>
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_output.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/wlr/types/wlr_output.h b/include/wlr/types/wlr_output.h index dc637e26..15df4efd 100644 --- a/include/wlr/types/wlr_output.h +++ b/include/wlr/types/wlr_output.h @@ -2,13 +2,13 @@ #define WLR_TYPES_WLR_OUTPUT_H #include <wayland-server.h> -#include <wlr/util/list.h> #include <stdbool.h> struct wlr_output_mode { uint32_t flags; // enum wl_output_mode int32_t width, height; int32_t refresh; // mHz + struct wl_list link; }; struct wlr_output_impl; @@ -32,7 +32,7 @@ struct wlr_output { float transform_matrix[16]; /* Note: some backends may have zero modes */ - list_t *modes; + struct wl_list modes; struct wlr_output_mode *current_mode; struct { |