diff options
author | Isaac Freund <ifreund@ifreund.xyz> | 2020-12-07 21:22:03 +0100 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2021-01-10 16:28:19 +0100 |
commit | d6890cb847de6adb95f9579937a9cce049f076b8 (patch) | |
tree | f78f2a9dab50ba99f2b9ec356d9faf41fb57ff7e /include/wlr | |
parent | 098094c5cbfd72ad989b9418b70acd531cbb5f17 (diff) |
output-management: use same types as wlr_output
This is more correct and also makes things much nicer for languages
that don't allow implicit conversions between these types.
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_output_management_v1.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/wlr/types/wlr_output_management_v1.h b/include/wlr/types/wlr_output_management_v1.h index 945d57f0..c0551ac1 100644 --- a/include/wlr/types/wlr_output_management_v1.h +++ b/include/wlr/types/wlr_output_management_v1.h @@ -50,12 +50,12 @@ struct wlr_output_head_v1_state { bool enabled; struct wlr_output_mode *mode; struct { - int width, height; - int refresh; + int32_t width, height; + int32_t refresh; } custom_mode; int32_t x, y; enum wl_output_transform transform; - double scale; + float scale; }; struct wlr_output_head_v1 { |