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.
This commit is contained in:
Isaac Freund 2020-12-07 21:22:03 +01:00 committed by Simon Ser
parent 098094c5cb
commit d6890cb847
2 changed files with 4 additions and 4 deletions

View file

@ -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 {