aboutsummaryrefslogtreecommitdiff
path: root/include/wlr
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2022-03-13 11:21:56 +0100
committerSimon Ser <contact@emersion.fr>2022-03-16 16:42:45 +0000
commit68f2f8cf927d0ea9082438c130ffbc7c5d69fd85 (patch)
treec9cd7375f45f115f35e8524aad76bdd37c841475 /include/wlr
parent2d623724c3571b35cd95cf907df0435f29a3c88c (diff)
Revert "scene: try to import buffers as textures before rendering"
This reverts commit 3db1bcbe641b407b9f5c9e5d0a012b45aa2c6cb7. Since [1], importing buffers as textures before wlr_renderer_begin isn't necessary anymore. [1]: https://gitlab.freedesktop.org/wlroots/wlroots/-/merge_requests/3464
Diffstat (limited to 'include/wlr')
-rw-r--r--include/wlr/types/wlr_scene.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/wlr/types/wlr_scene.h b/include/wlr/types/wlr_scene.h
index 86775399..7c2238fb 100644
--- a/include/wlr/types/wlr_scene.h
+++ b/include/wlr/types/wlr_scene.h
@@ -69,9 +69,6 @@ struct wlr_scene {
// May be NULL
struct wlr_presentation *presentation;
struct wl_listener presentation_destroy;
-
- // List of buffers which need to be imported as textures
- struct wl_list pending_buffers; // wlr_scene_buffer.pending_link
};
/** A sub-tree in the scene-graph. */
@@ -118,7 +115,6 @@ struct wlr_scene_buffer {
struct wlr_fbox src_box;
int dst_width, dst_height;
enum wl_output_transform transform;
- struct wl_list pending_link; // wlr_scene.pending_buffers
};
/** A viewport for an output in the scene-graph */