wayland-egl: Remove left-over headers and struct
authorBenjamin Franzke <benjaminfranzke@googlemail.com>
Tue, 31 May 2011 09:13:57 +0000 (11:13 +0200)
committerKristian Høgsberg <krh@bitplanet.net>
Tue, 31 May 2011 19:13:36 +0000 (15:13 -0400)
src/egl/wayland/wayland-egl/wayland-egl-priv.h
src/egl/wayland/wayland-egl/wayland-egl.c

index 7bb436a78ab9f3ea779b0e412af5ffb96d442618..179f5cf199bbc4f3044ee7c9a7c3ade04ca48be7 100644 (file)
@@ -12,20 +12,8 @@ extern "C" {
 #define WL_EGL_EXPORT
 #endif
 
-#include <stdbool.h>
 #include <wayland-client.h>
 
-struct wl_egl_display {
-       struct wl_display *display;
-
-       struct wl_drm *drm;
-       int fd;
-       char *device_name;
-       bool authenticated;
-
-       void (*glFlush)(void);
-};
-
 struct wl_egl_window {
        struct wl_surface *surface;
        struct wl_visual *visual;
@@ -40,8 +28,7 @@ struct wl_egl_window {
 };
 
 struct wl_egl_pixmap {
-       struct wl_egl_display *display;
-       struct wl_visual      *visual;
+       struct wl_visual *visual;
        struct wl_buffer *buffer;
 
        int width;
index 3e1a9c45bdc273ee68fada6638b199f91eac1855..c8f73ea8a3a52eda5151836ef1cdf75835b8f2d2 100644 (file)
@@ -1,21 +1,8 @@
-#include <stdio.h>
 #include <stdlib.h>
-#include <string.h>
-#include <stdbool.h>
-#include <errno.h>
-
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <fcntl.h>
-#include <unistd.h>
-
-#include <dlfcn.h>
 
 #include <wayland-client.h>
 #include "wayland-egl.h"
 #include "wayland-egl-priv.h"
-#include "wayland-drm-client-protocol.h"
-#include <xf86drm.h>
 
 WL_EGL_EXPORT void
 wl_egl_window_resize(struct wl_egl_window *egl_window,