summaryrefslogtreecommitdiff
path: root/hw/xwayland
diff options
context:
space:
mode:
authorOlivier Fourdan <ofourdan@redhat.com>2024-03-12 14:45:46 +0100
committerMarge Bot <emma+marge@anholt.net>2024-03-18 15:41:18 +0000
commit6fd77acd91f342b8441b3c21abb7d85739ebf2f0 (patch)
treeefef0cd8f54fd20373f19ece1ac4b4e10f0f63d6 /hw/xwayland
parent5fd0c92b0e9d1770bb647aebe8b0b35b08e2f4c4 (diff)
xwayland/glamor: Drop the post_damage() hook
That was used only with the EGLStream backend, we can remove it. Signed-off-by: Olivier Fourdan <ofourdan@redhat.com> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1386>
Diffstat (limited to 'hw/xwayland')
-rw-r--r--hw/xwayland/xwayland-glamor.c13
-rw-r--r--hw/xwayland/xwayland-glamor.h2
-rw-r--r--hw/xwayland/xwayland-window.c9
3 files changed, 0 insertions, 24 deletions
diff --git a/hw/xwayland/xwayland-glamor.c b/hw/xwayland/xwayland-glamor.c
index 69d0e0a4d..dca556734 100644
--- a/hw/xwayland/xwayland-glamor.c
+++ b/hw/xwayland/xwayland-glamor.c
@@ -127,19 +127,6 @@ xwl_glamor_has_wl_interfaces(struct xwl_screen *xwl_screen,
}
Bool
-xwl_glamor_post_damage(struct xwl_window *xwl_window,
- PixmapPtr pixmap)
-{
- struct xwl_screen *xwl_screen = xwl_window->xwl_screen;
- RegionPtr region = xwl_window_get_damage_region(xwl_window);
-
- if (xwl_screen->egl_backend->post_damage)
- return xwl_screen->egl_backend->post_damage(xwl_window, pixmap, region);
-
- return TRUE;
-}
-
-Bool
xwl_glamor_allow_commits(struct xwl_window *xwl_window)
{
struct xwl_screen *xwl_screen = xwl_window->xwl_screen;
diff --git a/hw/xwayland/xwayland-glamor.h b/hw/xwayland/xwayland-glamor.h
index 9f7b19c35..70d3a8416 100644
--- a/hw/xwayland/xwayland-glamor.h
+++ b/hw/xwayland/xwayland-glamor.h
@@ -132,8 +132,6 @@ void xwl_glamor_init_wl_registry(struct xwl_screen *xwl_screen,
uint32_t version);
Bool xwl_glamor_has_wl_interfaces(struct xwl_screen *xwl_screen,
struct xwl_egl_backend *xwl_egl_backend);
-Bool xwl_glamor_post_damage(struct xwl_window *xwl_window,
- PixmapPtr pixmap);
Bool xwl_glamor_allow_commits(struct xwl_window *xwl_window);
void xwl_glamor_egl_make_current(struct xwl_screen *xwl_screen);
Bool xwl_glamor_needs_buffer_flush(struct xwl_screen *xwl_screen);
diff --git a/hw/xwayland/xwayland-window.c b/hw/xwayland/xwayland-window.c
index fda98fa18..43293cadf 100644
--- a/hw/xwayland/xwayland-window.c
+++ b/hw/xwayland/xwayland-window.c
@@ -1357,15 +1357,6 @@ xwl_window_attach_buffer(struct xwl_window *xwl_window)
return FALSE;
}
-#ifdef XWL_HAS_GLAMOR
- if (xwl_screen->glamor) {
- if (!xwl_glamor_post_damage(xwl_window, pixmap)) {
- ErrorF("glamor: Failed to post damage\n");
- return FALSE;
- }
- }
-#endif
-
wl_surface_attach(xwl_window->surface, buffer, 0, 0);
/* Arbitrary limit to try to avoid flooding the Wayland