Merge branch 'fix-high-depth-switch' into 'main'

surface: Use correct display when destroying a surface for depth switch

Closes #4773

See merge request GNOME/gtk!4591
This commit is contained in:
Matthias Clasen 2022-03-22 12:58:07 +00:00
commit 01b91c1ba3

View File

@ -1125,7 +1125,7 @@ gdk_surface_ensure_egl_surface (GdkSurface *self,
gdk_display_get_egl_config_high_depth (display) != gdk_display_get_egl_config (display))
{
gdk_gl_context_clear_current_if_surface (self);
eglDestroySurface (gdk_surface_get_display (self), priv->egl_surface);
eglDestroySurface (gdk_display_get_egl_display (display), priv->egl_surface);
priv->egl_surface = NULL;
}