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
|
|
|
*
|
2014-03-17 19:10:07 -04:00
|
|
|
* You need to include `clutter-egl.h` 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"
|
2014-03-17 14:35:58 -04:00
|
|
|
#include <clutter/clutter.h>
|
2007-03-27 17:09:11 -04:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2010-06-17 23:38:43 -04:00
|
|
|
/**
|
|
|
|
* clutter_eglx_display:
|
|
|
|
*
|
2014-03-18 10:14:22 -04:00
|
|
|
* Retrieves the #EGLDisplay used by Clutter,
|
2010-12-09 10:11:37 -05:00
|
|
|
* if Clutter has been compiled with EGL and X11 support.
|
2010-06-17 23:38:43 -04:00
|
|
|
*
|
|
|
|
* Return value: the EGL display
|
|
|
|
*
|
|
|
|
* Since: 0.4
|
2010-12-09 10:11:37 -05:00
|
|
|
*
|
|
|
|
* Deprecated: 1.6: Use clutter_egl_get_egl_display() instead
|
2010-06-17 23:38:43 -04:00
|
|
|
*/
|
2011-10-11 18:03:09 -04:00
|
|
|
CLUTTER_DEPRECATED_FOR(clutter_egl_get_egl_display)
|
2010-12-09 10:11:37 -05:00
|
|
|
EGLDisplay clutter_eglx_display (void);
|
2010-06-17 23:38:43 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_egl_display:
|
|
|
|
*
|
2014-03-18 10:14:22 -04:00
|
|
|
* Retrieves the #EGLDisplay used by Clutter
|
2010-06-17 23:38:43 -04:00
|
|
|
*
|
|
|
|
* Return value: the EGL display
|
2010-12-09 10:11:37 -05:00
|
|
|
*
|
|
|
|
* Deprecated: 1.6: Use clutter_egl_get_egl_display() instead
|
|
|
|
*/
|
2011-10-11 18:03:09 -04:00
|
|
|
CLUTTER_DEPRECATED_FOR(clutter_egl_get_egl_display)
|
2010-12-09 10:11:37 -05:00
|
|
|
EGLDisplay clutter_egl_display (void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_egl_get_egl_display:
|
|
|
|
*
|
2014-03-18 10:14:22 -04:00
|
|
|
* Retrieves the #EGLDisplay used by Clutter.
|
2010-12-09 10:11:37 -05:00
|
|
|
*
|
|
|
|
* Return value: the EGL display
|
|
|
|
*
|
|
|
|
* Since: 1.6
|
2010-06-17 23:38:43 -04:00
|
|
|
*/
|
2014-03-17 14:35:58 -04:00
|
|
|
CLUTTER_AVAILABLE_IN_1_6
|
2010-12-09 10:11:37 -05:00
|
|
|
EGLDisplay clutter_egl_get_egl_display (void);
|
2007-03-27 17:09:11 -04:00
|
|
|
|
2014-03-14 21:24:57 -04:00
|
|
|
#ifdef COGL_HAS_EGL_PLATFORM_KMS_SUPPORT
|
2014-03-17 14:35:58 -04:00
|
|
|
CLUTTER_AVAILABLE_IN_1_18
|
|
|
|
void clutter_egl_set_kms_fd (int fd);
|
2014-03-14 21:24:57 -04:00
|
|
|
#endif
|
2014-02-28 09:48:10 -05:00
|
|
|
|
2014-02-28 10:15:45 -05:00
|
|
|
CLUTTER_AVAILABLE_IN_1_20
|
|
|
|
void clutter_egl_freeze_master_clock (void);
|
|
|
|
CLUTTER_AVAILABLE_IN_1_20
|
|
|
|
void clutter_egl_thaw_master_clock (void);
|
|
|
|
|
2007-03-27 17:09:11 -04:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __CLUTTER_EGL_H__ */
|