filename | src/drivers/video_egl.h |
changeset | 1296:30ecee61f811 |
prev | 1287:dac8f363f1fe |
author | nkeynes |
date | Sat Jan 26 14:00:48 2013 +1000 (10 years ago) |
permissions | -rw-r--r-- |
last change | Change glib includes to #include <glib.h> rather than the individual headers, as recent glib versions are breaking on this |
view | annotate | diff | log | raw |
1 /**
2 * $Id$
3 *
4 * Window management using EGL.
5 *
6 * Copyright (c) 2012 Nathan Keynes.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 */
20 #ifndef lxdream_video_egl_H
21 #define lxdream_video_egl_H 1
23 #include <glib.h>
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
29 #include <EGL/egl.h>
31 gboolean video_egl_init();
32 gboolean video_egl_init_context(EGLNativeWindowType window, int format);
33 gboolean video_egl_init_driver(display_driver_t driver);
34 void video_egl_shutdown();
35 gboolean video_egl_set_window(EGLNativeWindowType window, int width, int height, int format);
36 void video_egl_clear_window();
38 #ifdef __cplusplus
39 }
40 #endif
42 #endif /* !lxdream_video_egl_H */
.