summaryrefslogtreecommitdiff
path: root/src/egl/wayland/wayland-egl-priv.h
blob: f34ccbcb5a116c70a5b4a9812a96af06e21a90cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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>

#define EGL_EGLEXT_PROTOTYPES
#include <EGL/egl.h>
#include <EGL/eglext.h>

struct wl_egl_display {
	struct wl_display *display;

	struct wl_drm *drm;
	int fd;
	char *device_name;
	bool authenticated;

	void (*glFlush)(void);

	void *user_data;
};

struct wl_egl_surface {
	struct wl_surface *surface;
	struct wl_visual *visual;

	int width;
	int height;
	int dx;
	int dy;

	void *user_data;
};

struct wl_egl_image {
	EGLImageKHR *image;
	EGLDisplay *egl_dpy;

	int width;
	int height;
	struct wl_visual *visual;
};

#ifdef  __cplusplus
}
#endif

#endif