summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@bitplanet.net>2012-10-16 15:30:56 -0400
committerKristian Høgsberg <krh@bitplanet.net>2012-10-16 15:30:56 -0400
commit009d452432dd3550d2db0d931dc39769939f3ddf (patch)
tree56f640fc036d3829d7193dbad313d07b824f9416 /src
parentconnection: Dereference id completely for comparasion. (diff)
downloadwayland-009d452432dd3550d2db0d931dc39769939f3ddf.tar
wayland-009d452432dd3550d2db0d931dc39769939f3ddf.tar.gz
wayland-009d452432dd3550d2db0d931dc39769939f3ddf.tar.bz2
wayland-009d452432dd3550d2db0d931dc39769939f3ddf.tar.lz
wayland-009d452432dd3550d2db0d931dc39769939f3ddf.tar.xz
wayland-009d452432dd3550d2db0d931dc39769939f3ddf.tar.zst
wayland-009d452432dd3550d2db0d931dc39769939f3ddf.zip
wayland-egl: Drop ill-defined pixmap support
We don't have a use case for this and the actual semantics and synchronization behavior of wl_egl_pixmap were never really well-defined. It also doesn't provide the cross-process buffer sharing that make window systems pixmaps useful in other window systems.
Diffstat (limited to 'src')
-rw-r--r--src/wayland-egl.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/wayland-egl.h b/src/wayland-egl.h
index 56811a7..8255151 100644
--- a/src/wayland-egl.h
+++ b/src/wayland-egl.h
@@ -33,7 +33,6 @@ extern "C" {
#define WL_EGL_PLATFORM 1
struct wl_egl_window;
-struct wl_egl_pixmap;
struct wl_egl_window *
wl_egl_window_create(struct wl_surface *surface,
@@ -51,14 +50,6 @@ void
wl_egl_window_get_attached_size(struct wl_egl_window *egl_window,
int *width, int *height);
-struct wl_egl_pixmap *
-wl_egl_pixmap_create(int width, int height, uint32_t flags);
-void
-wl_egl_pixmap_destroy(struct wl_egl_pixmap *egl_pixmap);
-
-struct wl_buffer *
-wl_egl_pixmap_create_buffer(struct wl_egl_pixmap *egl_pixmap);
-
#ifdef __cplusplus
}
#endif