aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/tree/container.h
diff options
context:
space:
mode:
authorLibravatar Alexander Orzechowski <orzechowski.alexander@gmail.com>2023-04-06 22:23:53 +0200
committerLibravatar Kirill Primak <vyivel@eclair.cafe>2024-01-18 18:36:54 +0300
commit1e018e72b4d57c8f354b9be9686a7a75797cdcab (patch)
tree46e6c588d30ddfc43793d1980b38b8d53bf9bdd7 /include/sway/tree/container.h
parentscene_graph: Port view saved buffers (diff)
downloadsway-1e018e72b4d57c8f354b9be9686a7a75797cdcab.tar.gz
sway-1e018e72b4d57c8f354b9be9686a7a75797cdcab.tar.zst
sway-1e018e72b4d57c8f354b9be9686a7a75797cdcab.zip
Delete old damage tracking code
The new scene graph abstraction handles this for us.
Diffstat (limited to 'include/sway/tree/container.h')
-rw-r--r--include/sway/tree/container.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h
index 4920e064..4cd4c847 100644
--- a/include/sway/tree/container.h
+++ b/include/sway/tree/container.h
@@ -125,11 +125,6 @@ struct sway_container {
125 double child_total_width; 125 double child_total_width;
126 double child_total_height; 126 double child_total_height;
127 127
128 // In most cases this is the same as the content x and y, but if the view
129 // refuses to resize to the content dimensions then it can be smaller.
130 // These are in layout coordinates.
131 double surface_x, surface_y;
132
133 // Outputs currently being intersected 128 // Outputs currently being intersected
134 list_t *outputs; // struct sway_output 129 list_t *outputs; // struct sway_output
135 130
@@ -181,8 +176,6 @@ bool container_has_ancestor(struct sway_container *container,
181 176
182void container_update_textures_recursive(struct sway_container *con); 177void container_update_textures_recursive(struct sway_container *con);
183 178
184void container_damage_whole(struct sway_container *container);
185
186void container_reap_empty(struct sway_container *con); 179void container_reap_empty(struct sway_container *con);
187 180
188struct sway_container *container_flatten(struct sway_container *container); 181struct sway_container *container_flatten(struct sway_container *container);