diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-07-08 08:29:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-08 08:29:59 -0700 |
commit | c1a6422b332887cb0af40e659d61652ecfa1d030 (patch) | |
tree | f1fe86cb4453515b03155bccfe29ca6a080cf728 /include/wlr | |
parent | 024fc76eee805d05176fba433049b94c82c099af (diff) | |
parent | c19d4757537a855f6e66f4473379e9b4eb3b6564 (diff) |
Merge pull request #1118 from emersion/xdg-output-no-noop-updates
xdg-output: don't send no-op updates
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_xdg_output.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_xdg_output.h b/include/wlr/types/wlr_xdg_output.h index 5e6a0780..81566ab9 100644 --- a/include/wlr/types/wlr_xdg_output.h +++ b/include/wlr/types/wlr_xdg_output.h @@ -10,6 +10,9 @@ struct wlr_xdg_output { struct wlr_output_layout_output *layout_output; + int32_t x, y; + int32_t width, height; + struct wl_listener destroy; }; |