aboutsummaryrefslogtreecommitdiff
path: root/include/wlr
diff options
context:
space:
mode:
Diffstat (limited to 'include/wlr')
-rw-r--r--include/wlr/types/wlr_compositor.h10
-rw-r--r--include/wlr/types/wlr_subcompositor.h1
2 files changed, 1 insertions, 10 deletions
diff --git a/include/wlr/types/wlr_compositor.h b/include/wlr/types/wlr_compositor.h
index 39bc3e21..dc95b303 100644
--- a/include/wlr/types/wlr_compositor.h
+++ b/include/wlr/types/wlr_compositor.h
@@ -142,11 +142,6 @@ struct wlr_surface {
*/
pixman_region32_t buffer_damage;
/**
- * The last commit's damage caused by surface and its subsurfaces'
- * movement, in surface-local coordinates.
- */
- pixman_region32_t external_damage;
- /**
* The current opaque region, in surface-local coordinates. It is clipped to
* the surface bounds. If the surface's buffer is using a fully opaque
* format, this is set to the whole surface.
@@ -404,10 +399,7 @@ void wlr_surface_for_each_surface(struct wlr_surface *surface,
wlr_surface_iterator_func_t iterator, void *user_data);
/**
- * Get the effective surface damage in surface-local coordinate space. Besides
- * buffer damage, this includes damage induced by resizing and moving the
- * surface and its subsurfaces. The resulting damage is not expected to be
- * bounded by the surface itself.
+ * Get the effective surface damage in surface-local coordinate space.
*/
void wlr_surface_get_effective_damage(struct wlr_surface *surface,
pixman_region32_t *damage);
diff --git a/include/wlr/types/wlr_subcompositor.h b/include/wlr/types/wlr_subcompositor.h
index 63323da6..bd3899b8 100644
--- a/include/wlr/types/wlr_subcompositor.h
+++ b/include/wlr/types/wlr_subcompositor.h
@@ -39,7 +39,6 @@ struct wlr_subsurface {
bool has_cache;
bool synchronized;
- bool reordered;
bool added;
struct wl_listener surface_client_commit;