summaryrefslogtreecommitdiff
path: root/clients/window.c
diff options
context:
space:
mode:
Diffstat (limited to 'clients/window.c')
-rw-r--r--clients/window.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/clients/window.c b/clients/window.c
index b802518..f495476 100644
--- a/clients/window.c
+++ b/clients/window.c
@@ -36,6 +36,8 @@
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <sys/mman.h>
+#include <wayland-egl.h>
+
#define EGL_EGLEXT_PROTOTYPES 1
#define GL_GLEXT_PROTOTYPES 1
#include <GL/gl.h>
@@ -48,8 +50,6 @@
#include <X11/extensions/XKBcommon.h>
-#include <wayland-egl.h>
-
#include <linux/input.h>
#include "wayland-util.h"
#include "wayland-client.h"
@@ -1593,7 +1593,7 @@ init_egl(struct display *d)
{
EGLint major, minor;
- d->dpy = eglGetDisplay((EGLNativeDisplayType) d->native_dpy);
+ d->dpy = eglGetDisplay(d->native_dpy);
if (!eglInitialize(d->dpy, &major, &minor)) {
fprintf(stderr, "failed to initialize display\n");
return -1;