blob: 25c7bdfa363c193b9a6af296de215268ee440bbf [file] [log] [blame]
Benjamin Franzkeaabdce02011-01-15 00:40:17 +01001/*
2 * Copyright © 2011 Benjamin Franzke
3 *
4 * Permission to use, copy, modify, distribute, and sell this software and its
5 * documentation for any purpose is hereby granted without fee, provided that
6 * the above copyright notice appear in all copies and that both that copyright
7 * notice and this permission notice appear in supporting documentation, and
8 * that the name of the copyright holders not be used in advertising or
9 * publicity pertaining to distribution of the software without specific,
10 * written prior permission. The copyright holders make no representations
11 * about the suitability of this software for any purpose. It is provided "as
12 * is" without express or implied warranty.
13 *
14 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
20 * OF THIS SOFTWARE.
21 */
22
23#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
Benjamin Franzkeaabdce02011-01-15 00:40:17 +010026#include <stdbool.h>
27#include <math.h>
28#include <assert.h>
Pekka Paalanen88e60fc2011-12-13 12:09:09 +020029#include <signal.h>
Benjamin Franzkeaabdce02011-01-15 00:40:17 +010030
Benjamin Franzkeaabdce02011-01-15 00:40:17 +010031#include <wayland-client.h>
Kristian Høgsberga495a5e2011-02-04 15:31:33 -050032#include <wayland-egl.h>
Benjamin Franzkeaabdce02011-01-15 00:40:17 +010033
Benjamin Franzkeaabdce02011-01-15 00:40:17 +010034#include <GLES2/gl2.h>
Benjamin Franzkeaabdce02011-01-15 00:40:17 +010035#include <EGL/egl.h>
Benjamin Franzkeaabdce02011-01-15 00:40:17 +010036
Ander Conselvan de Oliveirad51624f2012-05-02 16:42:23 +030037struct window;
Daniel Stone37816df2012-05-16 18:45:18 +010038struct seat;
Ander Conselvan de Oliveirad51624f2012-05-02 16:42:23 +030039
Benjamin Franzkeaabdce02011-01-15 00:40:17 +010040struct display {
41 struct wl_display *display;
Kristian Høgsberga495a5e2011-02-04 15:31:33 -050042 struct wl_compositor *compositor;
Kristian Høgsberg7a5c9792011-06-18 06:12:54 -040043 struct wl_shell *shell;
Kristian Høgsbergb84108d2012-05-16 16:16:19 -040044 struct wl_seat *seat;
45 struct wl_pointer *pointer;
Benjamin Franzkeaabdce02011-01-15 00:40:17 +010046 struct {
47 EGLDisplay dpy;
48 EGLContext ctx;
Kristian Høgsberga495a5e2011-02-04 15:31:33 -050049 EGLConfig conf;
Benjamin Franzkeaabdce02011-01-15 00:40:17 +010050 } egl;
Benjamin Franzkeaabdce02011-01-15 00:40:17 +010051 uint32_t mask;
Ander Conselvan de Oliveirad51624f2012-05-02 16:42:23 +030052 struct window *window;
Benjamin Franzkeaabdce02011-01-15 00:40:17 +010053};
54
55struct window {
56 struct display *display;
57 struct {
58 int width, height;
59 } geometry;
60 struct {
61 GLuint fbo;
62 GLuint color_rbo;
63
Benjamin Franzkeaabdce02011-01-15 00:40:17 +010064 GLuint rotation_uniform;
65
66 GLuint pos;
67 GLuint col;
68 } gl;
Kristian Høgsberga495a5e2011-02-04 15:31:33 -050069
70 struct wl_egl_window *native;
71 struct wl_surface *surface;
Pekka Paalanen9d1613e2011-11-25 12:09:16 +020072 struct wl_shell_surface *shell_surface;
Kristian Høgsberga495a5e2011-02-04 15:31:33 -050073 EGLSurface egl_surface;
Pekka Paalanen2c2c1062011-12-13 14:50:25 +020074 struct wl_callback *callback;
Ander Conselvan de Oliveirad51624f2012-05-02 16:42:23 +030075 int fullscreen, configured;
Benjamin Franzkeaabdce02011-01-15 00:40:17 +010076};
77
78static const char *vert_shader_text =
79 "uniform mat4 rotation;\n"
80 "attribute vec4 pos;\n"
81 "attribute vec4 color;\n"
82 "varying vec4 v_color;\n"
83 "void main() {\n"
84 " gl_Position = rotation * pos;\n"
85 " v_color = color;\n"
86 "}\n";
87
88static const char *frag_shader_text =
Kristian Høgsberg1a11fac2011-01-14 20:39:21 -050089 "precision mediump float;\n"
Benjamin Franzkeaabdce02011-01-15 00:40:17 +010090 "varying vec4 v_color;\n"
91 "void main() {\n"
92 " gl_FragColor = v_color;\n"
93 "}\n";
94
95static void
Ander Conselvan de Oliveirad51624f2012-05-02 16:42:23 +030096init_egl(struct display *display, EGLint alpha_size)
Benjamin Franzkeaabdce02011-01-15 00:40:17 +010097{
Kristian Høgsberg1a11fac2011-01-14 20:39:21 -050098 static const EGLint context_attribs[] = {
99 EGL_CONTEXT_CLIENT_VERSION, 2,
100 EGL_NONE
101 };
102
Ander Conselvan de Oliveirad51624f2012-05-02 16:42:23 +0300103 EGLint config_attribs[] = {
Kristian Høgsberg8e81df42012-01-11 14:24:46 -0500104 EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
Kristian Høgsberga495a5e2011-02-04 15:31:33 -0500105 EGL_RED_SIZE, 1,
106 EGL_GREEN_SIZE, 1,
107 EGL_BLUE_SIZE, 1,
Ander Conselvan de Oliveirad51624f2012-05-02 16:42:23 +0300108 EGL_ALPHA_SIZE, alpha_size,
Kristian Høgsberga495a5e2011-02-04 15:31:33 -0500109 EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
110 EGL_NONE
111 };
112
113 EGLint major, minor, n;
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100114 EGLBoolean ret;
115
Kristian Høgsberg91342c62011-04-14 14:44:58 -0400116 display->egl.dpy = eglGetDisplay(display->display);
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100117 assert(display->egl.dpy);
118
119 ret = eglInitialize(display->egl.dpy, &major, &minor);
120 assert(ret == EGL_TRUE);
Kristian Høgsberg1a11fac2011-01-14 20:39:21 -0500121 ret = eglBindAPI(EGL_OPENGL_ES_API);
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100122 assert(ret == EGL_TRUE);
123
Pekka Paalanenb79b6352012-06-12 17:42:24 +0300124 ret = eglChooseConfig(display->egl.dpy, config_attribs,
125 &display->egl.conf, 1, &n);
126 assert(ret && n == 1);
Kristian Høgsberga495a5e2011-02-04 15:31:33 -0500127
128 display->egl.ctx = eglCreateContext(display->egl.dpy,
129 display->egl.conf,
Kristian Høgsberg1a11fac2011-01-14 20:39:21 -0500130 EGL_NO_CONTEXT, context_attribs);
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100131 assert(display->egl.ctx);
Kristian Høgsberga495a5e2011-02-04 15:31:33 -0500132
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100133}
134
Pekka Paalanen2c2c1062011-12-13 14:50:25 +0200135static void
136fini_egl(struct display *display)
137{
138 /* Required, otherwise segfault in egl_dri2.c: dri2_make_current()
139 * on eglReleaseThread(). */
140 eglMakeCurrent(display->egl.dpy, EGL_NO_SURFACE, EGL_NO_SURFACE,
141 EGL_NO_CONTEXT);
142
143 eglTerminate(display->egl.dpy);
144 eglReleaseThread();
145}
146
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100147static GLuint
148create_shader(struct window *window, const char *source, GLenum shader_type)
149{
150 GLuint shader;
151 GLint status;
152
153 shader = glCreateShader(shader_type);
154 assert(shader != 0);
155
156 glShaderSource(shader, 1, (const char **) &source, NULL);
157 glCompileShader(shader);
158
159 glGetShaderiv(shader, GL_COMPILE_STATUS, &status);
160 if (!status) {
161 char log[1000];
162 GLsizei len;
163 glGetShaderInfoLog(shader, 1000, &len, log);
164 fprintf(stderr, "Error: compiling %s: %*s\n",
165 shader_type == GL_VERTEX_SHADER ? "vertex" : "fragment",
166 len, log);
167 exit(1);
168 }
169
170 return shader;
171}
172
173static void
174init_gl(struct window *window)
175{
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100176 GLuint frag, vert;
Scott Moreau3ea23d02012-06-13 17:42:21 -0600177 GLuint program;
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100178 GLint status;
179
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100180 glViewport(0, 0, window->geometry.width, window->geometry.height);
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100181
182 frag = create_shader(window, frag_shader_text, GL_FRAGMENT_SHADER);
183 vert = create_shader(window, vert_shader_text, GL_VERTEX_SHADER);
184
Scott Moreau3ea23d02012-06-13 17:42:21 -0600185 program = glCreateProgram();
186 glAttachShader(program, frag);
187 glAttachShader(program, vert);
188 glLinkProgram(program);
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100189
Scott Moreau3ea23d02012-06-13 17:42:21 -0600190 glGetProgramiv(program, GL_LINK_STATUS, &status);
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100191 if (!status) {
192 char log[1000];
193 GLsizei len;
Scott Moreau3ea23d02012-06-13 17:42:21 -0600194 glGetProgramInfoLog(program, 1000, &len, log);
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100195 fprintf(stderr, "Error: linking:\n%*s\n", len, log);
196 exit(1);
197 }
198
Scott Moreau3ea23d02012-06-13 17:42:21 -0600199 glUseProgram(program);
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100200
201 window->gl.pos = 0;
Scott Moreau3ea23d02012-06-13 17:42:21 -0600202 window->gl.col = 1;
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100203
Scott Moreau3ea23d02012-06-13 17:42:21 -0600204 glBindAttribLocation(program, window->gl.pos, "pos");
205 glBindAttribLocation(program, window->gl.col, "color");
206 glLinkProgram(program);
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100207
208 window->gl.rotation_uniform =
Scott Moreau3ea23d02012-06-13 17:42:21 -0600209 glGetUniformLocation(program, "rotation");
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100210}
211
212static void
Ander Conselvan de Oliveirad51624f2012-05-02 16:42:23 +0300213handle_ping(void *data, struct wl_shell_surface *shell_surface,
214 uint32_t serial)
215{
216 wl_shell_surface_pong(shell_surface, serial);
217}
218
219static void
220handle_configure(void *data, struct wl_shell_surface *shell_surface,
221 uint32_t edges, int32_t width, int32_t height)
222{
223 struct window *window = data;
224
225 window->geometry.width = width;
226 window->geometry.height = height;
227 window->configured = 1;
228}
229
230static void
231handle_popup_done(void *data, struct wl_shell_surface *shell_surface)
232{
233}
234
235static const struct wl_shell_surface_listener shell_surface_listener = {
236 handle_ping,
237 handle_configure,
238 handle_popup_done
239};
240
241static void
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100242create_surface(struct window *window)
243{
244 struct display *display = window->display;
Kristian Høgsberga495a5e2011-02-04 15:31:33 -0500245 EGLBoolean ret;
Benjamin Franzke65e50512011-05-31 11:36:31 +0200246
Kristian Høgsberga495a5e2011-02-04 15:31:33 -0500247 window->surface = wl_compositor_create_surface(display->compositor);
Pekka Paalanen9d1613e2011-11-25 12:09:16 +0200248 window->shell_surface = wl_shell_get_shell_surface(display->shell,
249 window->surface);
Ander Conselvan de Oliveirad51624f2012-05-02 16:42:23 +0300250
251 wl_shell_surface_add_listener(window->shell_surface,
252 &shell_surface_listener, window);
253
254 if (window->fullscreen) {
255 window->configured = 0;
256 wl_shell_surface_set_fullscreen(window->shell_surface,
257 WL_SHELL_SURFACE_FULLSCREEN_METHOD_DEFAULT,
258 0, NULL);
259
260 while (!window->configured)
261 wl_display_iterate(display->display, display->mask);
262 }
263 else
264 wl_shell_surface_set_toplevel(window->shell_surface);
265
Kristian Høgsberga495a5e2011-02-04 15:31:33 -0500266 window->native =
Kristian Høgsberg91342c62011-04-14 14:44:58 -0400267 wl_egl_window_create(window->surface,
Kristian Høgsbergbfb8e612011-02-07 10:30:38 -0500268 window->geometry.width,
Kristian Høgsbergf389cac2011-08-31 16:21:38 -0400269 window->geometry.height);
Kristian Høgsberga495a5e2011-02-04 15:31:33 -0500270 window->egl_surface =
271 eglCreateWindowSurface(display->egl.dpy,
272 display->egl.conf,
Kristian Høgsberg8e81df42012-01-11 14:24:46 -0500273 window->native, NULL);
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100274
Kristian Høgsberga495a5e2011-02-04 15:31:33 -0500275 ret = eglMakeCurrent(window->display->egl.dpy, window->egl_surface,
276 window->egl_surface, window->display->egl.ctx);
277 assert(ret == EGL_TRUE);
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100278}
279
Pekka Paalanen2c2c1062011-12-13 14:50:25 +0200280static void
281destroy_surface(struct window *window)
282{
283 wl_egl_window_destroy(window->native);
284
285 wl_shell_surface_destroy(window->shell_surface);
286 wl_surface_destroy(window->surface);
287
288 if (window->callback)
289 wl_callback_destroy(window->callback);
290}
291
Kristian Høgsberg33418202011-08-16 23:01:28 -0400292static const struct wl_callback_listener frame_listener;
293
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100294static void
Kristian Høgsberg33418202011-08-16 23:01:28 -0400295redraw(void *data, struct wl_callback *callback, uint32_t time)
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100296{
297 struct window *window = data;
298 static const GLfloat verts[3][2] = {
299 { -0.5, -0.5 },
300 { 0.5, -0.5 },
301 { 0, 0.5 }
302 };
303 static const GLfloat colors[3][3] = {
304 { 1, 0, 0 },
305 { 0, 1, 0 },
306 { 0, 0, 1 }
307 };
308 GLfloat angle;
309 GLfloat rotation[4][4] = {
310 { 1, 0, 0, 0 },
311 { 0, 1, 0, 0 },
312 { 0, 0, 1, 0 },
313 { 0, 0, 0, 1 }
314 };
315 static const int32_t speed_div = 5;
316 static uint32_t start_time = 0;
317
318 if (start_time == 0)
319 start_time = time;
320
321 angle = ((time-start_time) / speed_div) % 360 * M_PI / 180.0;
322 rotation[0][0] = cos(angle);
323 rotation[0][2] = sin(angle);
324 rotation[2][0] = -sin(angle);
325 rotation[2][2] = cos(angle);
326
327 glUniformMatrix4fv(window->gl.rotation_uniform, 1, GL_FALSE,
328 (GLfloat *) rotation);
329
330 glClearColor(0.0, 0.0, 0.0, 0.5);
331 glClear(GL_COLOR_BUFFER_BIT);
332
333 glVertexAttribPointer(window->gl.pos, 2, GL_FLOAT, GL_FALSE, 0, verts);
334 glVertexAttribPointer(window->gl.col, 3, GL_FLOAT, GL_FALSE, 0, colors);
335 glEnableVertexAttribArray(window->gl.pos);
336 glEnableVertexAttribArray(window->gl.col);
337
338 glDrawArrays(GL_TRIANGLES, 0, 3);
339
340 glDisableVertexAttribArray(window->gl.pos);
341 glDisableVertexAttribArray(window->gl.col);
342
Kristian Høgsberga495a5e2011-02-04 15:31:33 -0500343 eglSwapBuffers(window->display->egl.dpy, window->egl_surface);
Kristian Høgsberg33418202011-08-16 23:01:28 -0400344 if (callback)
345 wl_callback_destroy(callback);
346
Pekka Paalanen2c2c1062011-12-13 14:50:25 +0200347 window->callback = wl_surface_frame(window->surface);
348 wl_callback_add_listener(window->callback, &frame_listener, window);
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100349}
350
Kristian Høgsberg33418202011-08-16 23:01:28 -0400351static const struct wl_callback_listener frame_listener = {
352 redraw
353};
354
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100355static void
Daniel Stone37816df2012-05-16 18:45:18 +0100356pointer_handle_enter(void *data, struct wl_pointer *pointer,
357 uint32_t serial, struct wl_surface *surface,
358 wl_fixed_t sx, wl_fixed_t sy)
Ander Conselvan de Oliveirad51624f2012-05-02 16:42:23 +0300359{
360 struct display *display = data;
361
362 if (display->window->fullscreen)
Ander Conselvan de Oliveira37ffc3c2012-06-15 17:27:35 +0300363 wl_pointer_set_cursor(pointer, serial, NULL, 0, 0);
Ander Conselvan de Oliveirad51624f2012-05-02 16:42:23 +0300364}
365
366static void
Daniel Stone37816df2012-05-16 18:45:18 +0100367pointer_handle_leave(void *data, struct wl_pointer *pointer,
368 uint32_t serial, struct wl_surface *surface)
Ander Conselvan de Oliveirad51624f2012-05-02 16:42:23 +0300369{
370}
371
372static void
Daniel Stone37816df2012-05-16 18:45:18 +0100373pointer_handle_motion(void *data, struct wl_pointer *pointer,
374 uint32_t time, wl_fixed_t sx, wl_fixed_t sy)
Ander Conselvan de Oliveirad51624f2012-05-02 16:42:23 +0300375{
376}
377
378static void
Daniel Stone37816df2012-05-16 18:45:18 +0100379pointer_handle_button(void *data, struct wl_pointer *wl_pointer,
380 uint32_t serial, uint32_t time, uint32_t button,
381 uint32_t state)
Ander Conselvan de Oliveirad51624f2012-05-02 16:42:23 +0300382{
383}
384
385static void
Daniel Stone37816df2012-05-16 18:45:18 +0100386pointer_handle_axis(void *data, struct wl_pointer *wl_pointer,
Daniel Stone2fce4022012-05-30 16:32:00 +0100387 uint32_t time, uint32_t axis, wl_fixed_t value)
Ander Conselvan de Oliveirad51624f2012-05-02 16:42:23 +0300388{
389}
390
Daniel Stone37816df2012-05-16 18:45:18 +0100391static const struct wl_pointer_listener pointer_listener = {
392 pointer_handle_enter,
393 pointer_handle_leave,
394 pointer_handle_motion,
395 pointer_handle_button,
396 pointer_handle_axis,
Ander Conselvan de Oliveirad51624f2012-05-02 16:42:23 +0300397};
398
399static void
Daniel Stone37816df2012-05-16 18:45:18 +0100400seat_handle_capabilities(void *data, struct wl_seat *seat,
401 enum wl_seat_capability caps)
402{
Kristian Høgsbergb84108d2012-05-16 16:16:19 -0400403 struct display *d = data;
Daniel Stone37816df2012-05-16 18:45:18 +0100404
Kristian Høgsbergb84108d2012-05-16 16:16:19 -0400405 if ((caps & WL_SEAT_CAPABILITY_POINTER) && !d->pointer) {
406 d->pointer = wl_seat_get_pointer(seat);
407 wl_pointer_add_listener(d->pointer, &pointer_listener, d);
408 } else if (!(caps & WL_SEAT_CAPABILITY_POINTER) && d->pointer) {
409 wl_pointer_destroy(d->pointer);
410 d->pointer = NULL;
Daniel Stone37816df2012-05-16 18:45:18 +0100411 }
412}
413
414static const struct wl_seat_listener seat_listener = {
415 seat_handle_capabilities,
416};
417
418static void
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100419display_handle_global(struct wl_display *display, uint32_t id,
420 const char *interface, uint32_t version, void *data)
421{
422 struct display *d = data;
423
Kristian Høgsberg8357cd62011-05-13 13:24:56 -0400424 if (strcmp(interface, "wl_compositor") == 0) {
Kristian Høgsbergf790c792011-08-19 14:41:57 -0400425 d->compositor =
426 wl_display_bind(display, id, &wl_compositor_interface);
Kristian Høgsberg7a5c9792011-06-18 06:12:54 -0400427 } else if (strcmp(interface, "wl_shell") == 0) {
Kristian Høgsbergf790c792011-08-19 14:41:57 -0400428 d->shell = wl_display_bind(display, id, &wl_shell_interface);
Daniel Stone37816df2012-05-16 18:45:18 +0100429 } else if (strcmp(interface, "wl_seat") == 0) {
Kristian Høgsbergb84108d2012-05-16 16:16:19 -0400430 d->seat = wl_display_bind(d->display, id, &wl_seat_interface);
431 wl_seat_add_listener(d->seat, &seat_listener, d);
Kristian Høgsberg8357cd62011-05-13 13:24:56 -0400432 }
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100433}
434
435static int
436event_mask_update(uint32_t mask, void *data)
437{
438 struct display *d = data;
439
440 d->mask = mask;
441
442 return 0;
443}
444
Pekka Paalanen88e60fc2011-12-13 12:09:09 +0200445static int running = 1;
446
447static void
448signal_int(int signum)
449{
450 running = 0;
451}
452
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100453int
454main(int argc, char **argv)
455{
Pekka Paalanen88e60fc2011-12-13 12:09:09 +0200456 struct sigaction sigint;
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100457 struct display display = { 0 };
458 struct window window = { 0 };
Kristian Høgsberg3593f812012-05-10 20:40:51 -0400459 int alpha_size, i;
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100460
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100461 window.display = &display;
Ander Conselvan de Oliveirad51624f2012-05-02 16:42:23 +0300462 display.window = &window;
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100463 window.geometry.width = 250;
464 window.geometry.height = 250;
465
Kristian Høgsberg3593f812012-05-10 20:40:51 -0400466 alpha_size = 1;
467 for (i = 1; i < argc; i++) {
468 if (strcmp("-f", argv[i]) == 0)
469 window.fullscreen = 1;
470 if (strcmp("-o", argv[i]) == 0)
471 alpha_size = 0;
472 }
Ander Conselvan de Oliveirad51624f2012-05-02 16:42:23 +0300473
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100474 display.display = wl_display_connect(NULL);
475 assert(display.display);
476
477 wl_display_add_global_listener(display.display,
Kristian Høgsberga495a5e2011-02-04 15:31:33 -0500478 display_handle_global, &display);
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100479
Benjamin Franzke65e50512011-05-31 11:36:31 +0200480 wl_display_get_fd(display.display, event_mask_update, &display);
Kristian Høgsberg33418202011-08-16 23:01:28 -0400481 wl_display_iterate(display.display, WL_DISPLAY_READABLE);
Benjamin Franzke65e50512011-05-31 11:36:31 +0200482
Kristian Høgsberg3593f812012-05-10 20:40:51 -0400483 if (window.fullscreen)
484 alpha_size = 0;
485
486 init_egl(&display, alpha_size);
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100487 create_surface(&window);
Kristian Høgsberga495a5e2011-02-04 15:31:33 -0500488 init_gl(&window);
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100489
Pekka Paalanen88e60fc2011-12-13 12:09:09 +0200490 sigint.sa_handler = signal_int;
491 sigemptyset(&sigint.sa_mask);
492 sigint.sa_flags = SA_RESETHAND;
493 sigaction(SIGINT, &sigint, NULL);
494
Kristian Høgsberg33418202011-08-16 23:01:28 -0400495 redraw(&window, NULL, 0);
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100496
Pekka Paalanen88e60fc2011-12-13 12:09:09 +0200497 while (running)
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100498 wl_display_iterate(display.display, display.mask);
Kristian Høgsberga495a5e2011-02-04 15:31:33 -0500499
Pekka Paalanen88e60fc2011-12-13 12:09:09 +0200500 fprintf(stderr, "simple-egl exiting\n");
501
Pekka Paalanen2c2c1062011-12-13 14:50:25 +0200502 destroy_surface(&window);
503 fini_egl(&display);
504
505 if (display.shell)
506 wl_shell_destroy(display.shell);
507
508 if (display.compositor)
509 wl_compositor_destroy(display.compositor);
510
Pekka Paalanenfb850c42011-12-15 10:07:52 +0200511 wl_display_flush(display.display);
Kristian Høgsbergfcfc83f2012-02-28 14:29:19 -0500512 wl_display_disconnect(display.display);
Pekka Paalanen2c2c1062011-12-13 14:50:25 +0200513
Benjamin Franzkeaabdce02011-01-15 00:40:17 +0100514 return 0;
515}