aboutsummaryrefslogtreecommitdiff
path: root/include/wlr
diff options
context:
space:
mode:
authorAlexander Orzechowski <alex@ozal.ski>2023-06-09 05:39:48 -0400
committerSimon Ser <contact@emersion.fr>2023-06-12 14:12:47 +0200
commitae7bad86dd04133037e62e670ff2c6999c19f315 (patch)
treea1f6d80fb61ba09dd02ab595a775a15fd2b6b514 /include/wlr
parent709c9dd2872859fb4f06c4384afea3385a8bb79b (diff)
output: introduce wlr_output_state_set_damage()
Diffstat (limited to 'include/wlr')
-rw-r--r--include/wlr/types/wlr_output.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_output.h b/include/wlr/types/wlr_output.h
index 93943f0d..3ca8863a 100644
--- a/include/wlr/types/wlr_output.h
+++ b/include/wlr/types/wlr_output.h
@@ -573,6 +573,13 @@ void wlr_output_state_set_buffer(struct wlr_output_state *state,
struct wlr_buffer *buffer);
bool wlr_output_state_set_gamma_lut(struct wlr_output_state *state,
size_t ramp_size, const uint16_t *r, const uint16_t *g, const uint16_t *b);
+/**
+ * Sets the state's damage region.
+ *
+ * This should be called in along with wlr_output_state_set_buffer().
+ */
+void wlr_output_state_set_damage(struct wlr_output_state *state,
+ const pixman_region32_t *damage);
/**