summaryrefslogtreecommitdiff
path: root/src/egl/wayland/wayland-egl/wayland-egl-priv.h
diff options
context:
space:
mode:
authorBenjamin Franzke <benjaminfranzke@googlemail.com>2011-03-03 11:05:03 +0100
committerKristian Høgsberg <krh@bitplanet.net>2011-03-04 16:36:37 -0500
commite71920929e3933b007b0bd2358def91df1447eb3 (patch)
tree6e83b9544fa5a80759173ca3c200d2408cf220ad /src/egl/wayland/wayland-egl/wayland-egl-priv.h
parent1a57717bbe8a2cedf2e1bb72cfd7ec85cd2350fc (diff)
egl/wayland: Move wayland-egl into a subdir
This hopefully fixes wayland-egl's dependency resolution for autogenerated wayland-drm headers.
Diffstat (limited to 'src/egl/wayland/wayland-egl/wayland-egl-priv.h')
-rw-r--r--src/egl/wayland/wayland-egl/wayland-egl-priv.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/src/egl/wayland/wayland-egl/wayland-egl-priv.h b/src/egl/wayland/wayland-egl/wayland-egl-priv.h
new file mode 100644
index 0000000000..38b21c25be
--- /dev/null
+++ b/src/egl/wayland/wayland-egl/wayland-egl-priv.h
@@ -0,0 +1,60 @@
+#ifndef _WAYLAND_EGL_PRIV_H
+#define _WAYLAND_EGL_PRIV_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/* GCC visibility */
+#if defined(__GNUC__) && __GNUC__ >= 4
+#define WL_EGL_EXPORT __attribute__ ((visibility("default")))
+#else
+#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;
+
+ int width;
+ int height;
+ int dx;
+ int dy;
+
+ int attached_width;
+ int attached_height;
+};
+
+struct wl_egl_pixmap {
+ struct wl_egl_display *display;
+ struct wl_visual *visual;
+
+ int name;
+ int width;
+ int height;
+ int stride;
+
+ void (*destroy) (struct wl_egl_pixmap *egl_pixmap);
+
+ void *driver_private;
+};
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif