aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-12-02 13:17:24 -0500
committerGitHub <noreply@github.com>2018-12-02 13:17:24 -0500
commit273e110b742337142a90f9485b9592467209d1bd (patch)
tree7ba0d70303f223d0a71373392ea27d040e36d9d1 /include
parent8887508fed89d59486a4abcff7a2071326ca8207 (diff)
parent6aaefad40db8b4c972d30a5841c1ff819bb0da09 (diff)
Merge pull request #1403 from emersion/swap-buffers-damage-coords
output: switch swap_buffers damage to output-buffer-local coords
Diffstat (limited to 'include')
-rw-r--r--include/wlr/types/wlr_output.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/wlr/types/wlr_output.h b/include/wlr/types/wlr_output.h
index 6d38152a..22822b11 100644
--- a/include/wlr/types/wlr_output.h
+++ b/include/wlr/types/wlr_output.h
@@ -121,7 +121,7 @@ struct wlr_output {
struct wlr_output_event_swap_buffers {
struct wlr_output *output;
struct timespec *when;
- pixman_region32_t *damage;
+ pixman_region32_t *damage; // output-buffer-local coordinates
};
enum wlr_output_present_flag {
@@ -203,6 +203,9 @@ bool wlr_output_preferred_read_format(struct wlr_output *output,
* NULL. If the compositor doesn't support damage tracking, set `damage` to
* NULL.
*
+ * Damage is given in output-buffer-local coordinates (ie. scaled and
+ * transformed).
+ *
* Swapping buffers schedules a `frame` event.
*/
bool wlr_output_swap_buffers(struct wlr_output *output, struct timespec *when,