clutter: Remove unused FeatureFlags
Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3917>
This commit is contained in:
parent
334a85099d
commit
f7c828f012
1 changed files with 0 additions and 137 deletions
|
@ -1,137 +0,0 @@
|
||||||
/*
|
|
||||||
* 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, see <http://www.gnu.org/licenses/>.
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Run-time detection of Clutter features
|
|
||||||
*
|
|
||||||
* Parts of Clutter depend on the underlying platform, including the
|
|
||||||
* capabilities of the backend used and the OpenGL features exposed through the
|
|
||||||
* Clutter and COGL API.
|
|
||||||
*
|
|
||||||
* It is possible to ask whether Clutter has support for specific features at
|
|
||||||
* run-time.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "config.h"
|
|
||||||
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <sys/types.h>
|
|
||||||
|
|
||||||
#include "clutter/clutter-backend-private.h"
|
|
||||||
#include "clutter/clutter-feature.h"
|
|
||||||
#include "clutter/clutter-main.h"
|
|
||||||
#include "clutter/clutter-private.h"
|
|
||||||
#include "clutter/clutter-debug.h"
|
|
||||||
|
|
||||||
#include "cogl/cogl.h"
|
|
||||||
|
|
||||||
typedef struct ClutterFeatures
|
|
||||||
{
|
|
||||||
ClutterFeatureFlags flags;
|
|
||||||
guint features_set : 1;
|
|
||||||
} ClutterFeatures;
|
|
||||||
|
|
||||||
static ClutterFeatures* __features = NULL;
|
|
||||||
|
|
||||||
static ClutterFeatureFlags
|
|
||||||
clutter_features_from_cogl (void)
|
|
||||||
{
|
|
||||||
ClutterFeatureFlags clutter_flags = 0;
|
|
||||||
|
|
||||||
clutter_flags |= CLUTTER_FEATURE_SHADERS_GLSL;
|
|
||||||
|
|
||||||
return clutter_flags;
|
|
||||||
}
|
|
||||||
|
|
||||||
gboolean
|
|
||||||
clutter_feature_init (ClutterMainContext *context,
|
|
||||||
GError **error)
|
|
||||||
{
|
|
||||||
CLUTTER_NOTE (MISC, "checking features");
|
|
||||||
|
|
||||||
if (!__features)
|
|
||||||
{
|
|
||||||
CLUTTER_NOTE (MISC, "allocating features data");
|
|
||||||
__features = g_new0 (ClutterFeatures, 1);
|
|
||||||
__features->features_set = FALSE; /* don't rely on zero-ing */
|
|
||||||
}
|
|
||||||
|
|
||||||
if (__features->features_set)
|
|
||||||
return TRUE;
|
|
||||||
|
|
||||||
/* makes sure we have a GL context; if we have, this is a no-op */
|
|
||||||
if (!_clutter_backend_create_context (context->backend, error))
|
|
||||||
return FALSE;
|
|
||||||
|
|
||||||
__features->flags = clutter_features_from_cogl ();
|
|
||||||
|
|
||||||
__features->features_set = TRUE;
|
|
||||||
|
|
||||||
CLUTTER_NOTE (MISC, "features checked");
|
|
||||||
|
|
||||||
return TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* clutter_feature_available:
|
|
||||||
* @feature: a #ClutterFeatureFlags
|
|
||||||
*
|
|
||||||
* Checks whether @feature is available. @feature can be a logical
|
|
||||||
* OR of #ClutterFeatureFlags.
|
|
||||||
*
|
|
||||||
* Return value: %TRUE if a feature is available
|
|
||||||
*/
|
|
||||||
gboolean
|
|
||||||
clutter_feature_available (ClutterFeatureFlags feature)
|
|
||||||
{
|
|
||||||
if (G_UNLIKELY (!__features))
|
|
||||||
{
|
|
||||||
g_critical ("Unable to check features. Have you initialized Clutter?");
|
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (__features->flags & feature);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* clutter_feature_get_all:
|
|
||||||
*
|
|
||||||
* Returns all the supported features.
|
|
||||||
*
|
|
||||||
* Return value: a logical OR of all the supported features.
|
|
||||||
*/
|
|
||||||
ClutterFeatureFlags
|
|
||||||
clutter_feature_get_all (void)
|
|
||||||
{
|
|
||||||
if (G_UNLIKELY (!__features))
|
|
||||||
{
|
|
||||||
g_critical ("Unable to check features. Have you initialized Clutter?");
|
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
|
|
||||||
return __features->flags;
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue