egl: fix args to cogl_onscreen_x11_set_foreign_window_xid
[profile/ivi/clutter.git] / clutter / egl / clutter-egl-headers.h
1 /* Clutter.
2  * An OpenGL based 'interactive canvas' library.
3  * Authored By Matthew Allum  <mallum@openedhand.com>
4  * Copyright (C) 2006-2007 OpenedHand
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
18  *
19  *
20  */
21
22 #ifndef __CLUTTER_EGL_HEADERS_H__
23 #define __CLUTTER_EGL_HEADERS_H__
24
25 #include <cogl/cogl.h>
26
27 #if defined(COGL_HAS_GLES1)
28 #include <GLES/gl.h>
29 #include <GLES/egl.h>
30 #else
31
32 #include <EGL/egl.h>
33 #define NativeDisplayType EGLNativeDisplayType
34 #define NativeWindowType EGLNativeWindowType
35
36 #if defined(COGL_HAS_GLES2)
37 #include <GLES2/gl2.h>
38 #elif defined(COGL_HAS_GL)
39 #include <GL/gl.h>
40 #else
41 #error Unknown Cogl backend
42 #endif
43
44 #endif /* !COGL_HAS_GLES1 */
45
46 #endif /* __CLUTTER_EGL_HEADERS_H__ */