2006-07-24 17:15:19 -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
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* SECTION:clutter-main
|
|
|
|
* @short_description: Various 'global' clutter functions.
|
|
|
|
*
|
|
|
|
* Functions to retrieve various global Clutter resources and other utility
|
|
|
|
* functions for mainloops, events and threads
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _HAVE_CLUTTER_FEATURE_H
|
|
|
|
#define _HAVE_CLUTTER_FEATURE_H
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
2006-12-12 15:20:04 -05:00
|
|
|
G_BEGIN_DECLS
|
2006-07-24 17:15:19 -04:00
|
|
|
|
2007-07-26 16:08:09 -04:00
|
|
|
/**
|
|
|
|
* ClutterFeatureFlags:
|
2008-06-10 13:11:14 -04:00
|
|
|
* @CLUTTER_FEATURE_TEXTURE_NPOT: Set if NPOTS textures supported.
|
2007-07-26 16:08:09 -04:00
|
|
|
* @CLUTTER_FEATURE_SYNC_TO_VBLANK: Set if vblank syncing supported.
|
|
|
|
* @CLUTTER_FEATURE_TEXTURE_YUV: Set if YUV based textures supported.
|
|
|
|
* @CLUTTER_FEATURE_TEXTURE_READ_PIXELS: Set if texture pixels can be read.
|
|
|
|
* @CLUTTER_FEATURE_STAGE_STATIC: Set if stage size if fixed (i.e framebuffer)
|
|
|
|
* @CLUTTER_FEATURE_STAGE_USER_RESIZE: Set if stage is able to be user resized.
|
|
|
|
* @CLUTTER_FEATURE_STAGE_CURSOR: Set if stage has a graphical cursor.
|
2007-12-05 16:15:19 -05:00
|
|
|
* @CLUTTER_FEATURE_SHADERS_GLSL: Set if the backend supports GLSL shaders.
|
2008-02-01 10:29:00 -05:00
|
|
|
* @CLUTTER_FEATURE_OFFSCREEN: Set if the backend supports offscreen rendering.
|
2008-03-28 18:50:55 -04:00
|
|
|
* @CLUTTER_FEATURE_STAGE_MULTIPLE: Set if multiple stages are supported.
|
2007-07-26 16:08:09 -04:00
|
|
|
*
|
|
|
|
* Runtime flags indicating specific features available via Clutter window
|
|
|
|
* sysytem and graphics backend.
|
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
2006-07-27 12:09:25 -04:00
|
|
|
typedef enum
|
2006-07-24 17:15:19 -04:00
|
|
|
{
|
2008-04-25 09:37:36 -04:00
|
|
|
CLUTTER_FEATURE_TEXTURE_NPOT = (1 << 2),
|
|
|
|
CLUTTER_FEATURE_SYNC_TO_VBLANK = (1 << 3),
|
|
|
|
CLUTTER_FEATURE_TEXTURE_YUV = (1 << 4),
|
|
|
|
CLUTTER_FEATURE_TEXTURE_READ_PIXELS = (1 << 5),
|
|
|
|
CLUTTER_FEATURE_STAGE_STATIC = (1 << 6),
|
|
|
|
CLUTTER_FEATURE_STAGE_USER_RESIZE = (1 << 7),
|
|
|
|
CLUTTER_FEATURE_STAGE_CURSOR = (1 << 8),
|
|
|
|
CLUTTER_FEATURE_SHADERS_GLSL = (1 << 9),
|
|
|
|
CLUTTER_FEATURE_OFFSCREEN = (1 << 10),
|
|
|
|
CLUTTER_FEATURE_STAGE_MULTIPLE = (1 << 11)
|
2006-07-27 12:09:25 -04:00
|
|
|
} ClutterFeatureFlags;
|
2006-07-24 17:15:19 -04:00
|
|
|
|
2006-12-12 15:20:04 -05:00
|
|
|
gboolean clutter_feature_available (ClutterFeatureFlags feature);
|
2006-11-15 18:37:53 -05:00
|
|
|
ClutterFeatureFlags clutter_feature_get_all (void);
|
2006-07-24 17:15:19 -04:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|