diff options
author | Simon Ser <contact@emersion.fr> | 2019-07-19 22:42:37 +0300 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-07-21 12:33:32 -0400 |
commit | 76ef089f52b20a2def3dd1f8a8564af165050dcb (patch) | |
tree | 8494f7962340789840a68f3535607acc31dd6a13 /include | |
parent | bb056174146ae01448e0281ea204d2ddd60ebe3c (diff) |
output: drop wlr_output_mode.flags
AFAIK this was always set to zero. Instead, compute wl_output mode flags on the
fly.
Technically this is a breaking change, but I don't think anybody uses this
field.
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/types/wlr_output.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/wlr/types/wlr_output.h b/include/wlr/types/wlr_output.h index dff9f4eb..9bc1b67f 100644 --- a/include/wlr/types/wlr_output.h +++ b/include/wlr/types/wlr_output.h @@ -18,7 +18,6 @@ #include <wlr/types/wlr_buffer.h> struct wlr_output_mode { - uint32_t flags; // enum wl_output_mode int32_t width, height; int32_t refresh; // mHz bool preferred; |