2007-03-27 17:09:11 -04:00
|
|
|
/*
|
|
|
|
* Clutter.
|
|
|
|
*
|
|
|
|
* An OpenGL based 'interactive canvas' library.
|
|
|
|
*
|
|
|
|
* Authored By Matthew Allum <mallum@openedhand.com>
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 OpenedHand
|
|
|
|
*
|
|
|
|
* 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-03-27 17:09:11 -04:00
|
|
|
*/
|
|
|
|
|
2009-06-09 09:47:36 -04:00
|
|
|
/**
|
2010-06-17 23:38:43 -04:00
|
|
|
* SECTION:clutter-egl
|
|
|
|
* @short_description: EGL specific API
|
2009-06-09 09:47:36 -04:00
|
|
|
*
|
2010-06-17 23:38:43 -04:00
|
|
|
* The EGL backend for Clutter provides some EGL specific API
|
2010-08-27 11:19:00 -04:00
|
|
|
*
|
|
|
|
* You need to include
|
|
|
|
* <filename class="headerfile"><clutter/egl/clutter-egl.h></filename>
|
|
|
|
* to have access to the functions documented here.
|
2009-06-09 09:47:36 -04:00
|
|
|
*/
|
|
|
|
|
2007-03-27 17:09:11 -04:00
|
|
|
#ifndef __CLUTTER_EGL_H__
|
|
|
|
#define __CLUTTER_EGL_H__
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
2010-06-17 23:38:43 -04:00
|
|
|
#ifdef COGL_HAS_XLIB_SUPPORT
|
2007-03-27 17:09:11 -04:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xatom.h>
|
|
|
|
#include <X11/Xutil.h>
|
2010-06-17 23:38:43 -04:00
|
|
|
#endif
|
2007-03-27 17:09:11 -04:00
|
|
|
|
2008-05-27 13:42:50 -04:00
|
|
|
#include "clutter-egl-headers.h"
|
2007-03-27 17:09:11 -04:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2010-06-17 23:38:43 -04:00
|
|
|
#ifdef COGL_HAS_XLIB_SUPPORT
|
|
|
|
/**
|
|
|
|
* clutter_eglx_display:
|
|
|
|
*
|
|
|
|
* Retrieves the <structname>EGLDisplay</structname> used by Clutter
|
|
|
|
*
|
|
|
|
* Return value: the EGL display
|
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
2007-03-27 17:09:11 -04:00
|
|
|
EGLDisplay
|
2007-07-06 09:56:01 -04:00
|
|
|
clutter_eglx_display (void);
|
2010-06-17 23:38:43 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_egl_display:
|
|
|
|
*
|
|
|
|
* Retrieves the <structname>EGLDisplay</structname> used by Clutter
|
|
|
|
*
|
|
|
|
* Return value: the EGL display
|
|
|
|
*/
|
|
|
|
EGLDisplay
|
|
|
|
clutter_egl_display (void);
|
2007-03-27 17:09:11 -04:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __CLUTTER_EGL_H__ */
|