summaryrefslogtreecommitdiff
path: root/src/egl
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@bitplanet.net>2011-02-07 20:49:58 -0500
committerKristian Høgsberg <krh@bitplanet.net>2011-02-07 20:50:18 -0500
commit1e1b89103e1cdce9f20b9f32825dd166f8d9d6e1 (patch)
tree710bc43f27ffc524d0c9a77237d40e55aa42b7ed /src/egl
parent077c448d184799e0d9ec962013ec784c6a5c1807 (diff)
wayland-egl: Add struct wl_egl_display argument to +wl_egl_window_create()
Diffstat (limited to 'src/egl')
-rw-r--r--src/egl/wayland/wayland-egl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/egl/wayland/wayland-egl.c b/src/egl/wayland/wayland-egl.c
index bb95fcbf59..12fbdfa29c 100644
--- a/src/egl/wayland/wayland-egl.c
+++ b/src/egl/wayland/wayland-egl.c
@@ -138,7 +138,8 @@ wl_egl_window_resize(struct wl_egl_window *egl_window,
}
WL_EGL_EXPORT struct wl_egl_window *
-wl_egl_window_create(struct wl_surface *surface,
+wl_egl_window_create(struct wl_egl_display *egl_display,
+ struct wl_surface *surface,
int width, int height,
struct wl_visual *visual)
{