diff options
author | emersion <contact@emersion.fr> | 2019-03-11 11:21:18 +0100 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-04-13 08:31:30 -0600 |
commit | 1515c56caef9ee670d9ddb6dd748f2ce9d5523f0 (patch) | |
tree | c18e1e3833d0e6b623b1bf239d4849cc53749dd0 /include | |
parent | 930e37eae97e2ae965f7ae3a05d2fdd700827688 (diff) |
output: remove lx, ly
Fixes https://github.com/swaywm/wlroots/issues/1610
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/types/wlr_output.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/wlr/types/wlr_output.h b/include/wlr/types/wlr_output.h index 84791b2d..8590b8ad 100644 --- a/include/wlr/types/wlr_output.h +++ b/include/wlr/types/wlr_output.h @@ -111,9 +111,6 @@ struct wlr_output { struct wlr_output_cursor *hardware_cursor; int software_cursor_locks; // number of locks forcing software cursors - // the output position in layout space reported to clients - int32_t lx, ly; - struct wl_listener display_destroy; void *data; @@ -173,7 +170,6 @@ bool wlr_output_set_custom_mode(struct wlr_output *output, int32_t width, int32_t height, int32_t refresh); void wlr_output_set_transform(struct wlr_output *output, enum wl_output_transform transform); -void wlr_output_set_position(struct wlr_output *output, int32_t lx, int32_t ly); void wlr_output_set_scale(struct wlr_output *output, float scale); void wlr_output_set_subpixel(struct wlr_output *output, enum wl_output_subpixel subpixel); void wlr_output_destroy(struct wlr_output *output); |