From 705b3da7cb469c661a3dd43212b1baf6fe615ec9 Mon Sep 17 00:00:00 2001 From: Brandon Dowdy Date: Thu, 28 Jan 2021 23:24:52 +0000 Subject: render/egl: remove wlr_egl_{create,destroy}_surface Breaking changes: wlr_egl_create_surface and wlr_egl_destroy_surface have been removed and no longer exist. --- include/wlr/render/egl.h | 9 --------- 1 file changed, 9 deletions(-) (limited to 'include/wlr') diff --git a/include/wlr/render/egl.h b/include/wlr/render/egl.h index 82aa9505..ae155579 100644 --- a/include/wlr/render/egl.h +++ b/include/wlr/render/egl.h @@ -57,7 +57,6 @@ struct wlr_egl { struct { PFNEGLGETPLATFORMDISPLAYEXTPROC eglGetPlatformDisplayEXT; - PFNEGLCREATEPLATFORMWINDOWSURFACEEXTPROC eglCreatePlatformWindowSurfaceEXT; PFNEGLCREATEIMAGEKHRPROC eglCreateImageKHR; PFNEGLDESTROYIMAGEKHRPROC eglDestroyImageKHR; PFNEGLQUERYWAYLANDBUFFERWL eglQueryWaylandBufferWL; @@ -100,12 +99,6 @@ void wlr_egl_destroy(struct wlr_egl *egl); */ bool wlr_egl_bind_display(struct wlr_egl *egl, struct wl_display *local_display); -/** - * Returns a surface for the given native window - * The window must match the remote display the wlr_egl was created with. - */ -EGLSurface wlr_egl_create_surface(struct wlr_egl *egl, void *window); - /** * Creates an EGL image from the given wl_drm buffer resource. */ @@ -164,8 +157,6 @@ void wlr_egl_save_context(struct wlr_egl_context *context); */ bool wlr_egl_restore_context(struct wlr_egl_context *context); -bool wlr_egl_destroy_surface(struct wlr_egl *egl, EGLSurface surface); - int wlr_egl_dup_drm_fd(struct wlr_egl *egl); #endif -- cgit v1.2.3