2007-04-27 17:13:06 -04:00
|
|
|
/*
|
2009-04-27 10:48:12 -04:00
|
|
|
* Cogl
|
2007-04-27 17:13:06 -04:00
|
|
|
*
|
2009-04-27 10:48:12 -04:00
|
|
|
* An object oriented GL/GLES Abstraction/Utility Layer
|
2007-04-27 17:13:06 -04:00
|
|
|
*
|
2010-06-18 09:30:23 -04:00
|
|
|
* Copyright (C) 2007,2008,2009,2010 Intel Corporation.
|
2007-04-27 17:13:06 -04:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2010-03-01 07:56:10 -05:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*
|
2007-04-27 17:13:06 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __COGL_DEFINES_H__
|
|
|
|
#define __COGL_DEFINES_H__
|
|
|
|
|
2009-05-06 05:35:28 -04:00
|
|
|
#include <glib.h>
|
2010-07-12 09:30:44 -04:00
|
|
|
@COGL_GL_HEADER_INCLUDES@
|
2007-04-27 17:13:06 -04:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2010-06-18 09:30:23 -04:00
|
|
|
@COGL_DEFINES@
|
2007-12-03 11:29:18 -05:00
|
|
|
|
2011-05-13 03:04:47 -04:00
|
|
|
#ifdef COGL_HAS_EGL_SUPPORT
|
|
|
|
#ifdef COGL_HAS_GLES1
|
|
|
|
#include <GLES/gl.h>
|
|
|
|
@COGL_GLES1_EGL_INCLUDE@
|
|
|
|
#else
|
|
|
|
#include <EGL/egl.h>
|
|
|
|
#define NativeDisplayType EGLNativeDisplayType
|
|
|
|
#define NativeWindowType EGLNativeWindowType
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2007-04-27 17:13:06 -04:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif
|