2007-03-27 17:09:11 -04:00
|
|
|
/*
|
2009-03-30 12:07:31 -04:00
|
|
|
* Cogl
|
2007-03-27 17:09:11 -04:00
|
|
|
*
|
2009-04-27 10:48:12 -04:00
|
|
|
* An object oriented GL/GLES Abstraction/Utility Layer
|
2007-03-27 17:09:11 -04:00
|
|
|
*
|
2009-04-27 10:48:12 -04:00
|
|
|
* Copyright (C) 2007,2008,2009 Intel Corporation.
|
2007-03-27 17:09:11 -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-03-27 17:09:11 -04:00
|
|
|
*/
|
|
|
|
|
2007-10-12 04:17:00 -04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2007-04-27 20:37:11 -04:00
|
|
|
#include "config.h"
|
2007-10-12 04:17:00 -04:00
|
|
|
#endif
|
|
|
|
|
2007-04-27 20:37:11 -04:00
|
|
|
#include <string.h>
|
2009-01-28 09:09:51 -05:00
|
|
|
|
2009-03-30 12:07:31 -04:00
|
|
|
#include "cogl.h"
|
2008-04-25 09:37:36 -04:00
|
|
|
#include "cogl-internal.h"
|
|
|
|
#include "cogl-context.h"
|
2009-11-17 08:52:40 -05:00
|
|
|
#include "cogl-feature-private.h"
|
2009-09-25 09:34:34 -04:00
|
|
|
|
2009-11-11 08:26:54 -05:00
|
|
|
gboolean
|
|
|
|
_cogl_check_driver_valid (GError **error)
|
|
|
|
{
|
|
|
|
/* The GLES backend doesn't have any particular version requirements */
|
|
|
|
return TRUE;
|
|
|
|
}
|
2007-03-27 17:09:11 -04:00
|
|
|
|
2009-11-17 08:52:40 -05:00
|
|
|
/* Define a set of arrays containing the functions required from GL
|
|
|
|
for each feature */
|
|
|
|
#define COGL_FEATURE_BEGIN(name, min_gl_major, min_gl_minor, \
|
2009-11-14 09:59:59 -05:00
|
|
|
namespaces, extension_names, \
|
|
|
|
feature_flags, feature_flags_private) \
|
2009-11-17 08:52:40 -05:00
|
|
|
static const CoglFeatureFunction cogl_feature_ ## name ## _funcs[] = {
|
|
|
|
#define COGL_FEATURE_FUNCTION(ret, name, args) \
|
|
|
|
{ G_STRINGIFY (name), G_STRUCT_OFFSET (CoglContext, drv.pf_ ## name) },
|
|
|
|
#define COGL_FEATURE_END() \
|
2009-11-18 08:23:10 -05:00
|
|
|
{ NULL, 0 }, \
|
2009-11-17 08:52:40 -05:00
|
|
|
};
|
2010-09-13 06:30:30 -04:00
|
|
|
#include "cogl-feature-functions-gles.h"
|
2009-11-17 08:52:40 -05:00
|
|
|
|
|
|
|
/* Define an array of features */
|
|
|
|
#undef COGL_FEATURE_BEGIN
|
|
|
|
#define COGL_FEATURE_BEGIN(name, min_gl_major, min_gl_minor, \
|
2009-11-14 09:59:59 -05:00
|
|
|
namespaces, extension_names, \
|
|
|
|
feature_flags, feature_flags_private) \
|
2009-11-17 08:52:40 -05:00
|
|
|
{ min_gl_major, min_gl_minor, namespaces, \
|
2009-11-14 09:59:59 -05:00
|
|
|
extension_names, feature_flags, feature_flags_private, \
|
2009-11-17 08:52:40 -05:00
|
|
|
cogl_feature_ ## name ## _funcs },
|
|
|
|
#undef COGL_FEATURE_FUNCTION
|
|
|
|
#define COGL_FEATURE_FUNCTION(ret, name, args)
|
|
|
|
#undef COGL_FEATURE_END
|
|
|
|
#define COGL_FEATURE_END()
|
|
|
|
|
|
|
|
static const CoglFeatureData cogl_feature_data[] =
|
|
|
|
{
|
|
|
|
#include "cogl-feature-functions.h"
|
|
|
|
};
|
|
|
|
|
2007-03-27 17:09:11 -04:00
|
|
|
void
|
2009-03-30 12:07:31 -04:00
|
|
|
_cogl_features_init (void)
|
2008-04-25 09:37:36 -04:00
|
|
|
{
|
2008-10-30 12:52:56 -04:00
|
|
|
CoglFeatureFlags flags = 0;
|
|
|
|
int max_clip_planes = 0;
|
2008-12-04 08:45:09 -05:00
|
|
|
GLint num_stencil_bits = 0;
|
2009-09-25 09:34:34 -04:00
|
|
|
const char *gl_extensions;
|
2009-11-17 08:52:40 -05:00
|
|
|
int i;
|
2008-04-25 09:37:36 -04:00
|
|
|
|
|
|
|
_COGL_GET_CONTEXT (ctx, NO_RETVAL);
|
|
|
|
|
2009-09-25 09:34:34 -04:00
|
|
|
gl_extensions = (const char*) glGetString (GL_EXTENSIONS);
|
|
|
|
|
2009-11-17 08:52:40 -05:00
|
|
|
for (i = 0; i < G_N_ELEMENTS (cogl_feature_data); i++)
|
2010-06-02 12:55:56 -04:00
|
|
|
if (_cogl_feature_check ("GL", cogl_feature_data + i,
|
2009-11-17 08:52:40 -05:00
|
|
|
0, 0,
|
|
|
|
gl_extensions))
|
|
|
|
flags |= cogl_feature_data[i].feature_flags;
|
2009-09-25 09:34:34 -04:00
|
|
|
|
2009-01-24 11:55:04 -05:00
|
|
|
GE( glGetIntegerv (GL_STENCIL_BITS, &num_stencil_bits) );
|
2008-12-04 08:45:09 -05:00
|
|
|
/* We need at least three stencil bits to combine clips */
|
|
|
|
if (num_stencil_bits > 2)
|
2008-04-25 09:37:36 -04:00
|
|
|
flags |= COGL_FEATURE_STENCIL_BUFFER;
|
|
|
|
|
2009-01-24 11:55:04 -05:00
|
|
|
GE( glGetIntegerv (GL_MAX_CLIP_PLANES, &max_clip_planes) );
|
2008-04-25 09:37:36 -04:00
|
|
|
if (max_clip_planes >= 4)
|
|
|
|
flags |= COGL_FEATURE_FOUR_CLIP_PLANES;
|
|
|
|
|
2008-06-02 06:58:57 -04:00
|
|
|
#ifdef HAVE_COGL_GLES2
|
2009-08-20 07:53:32 -04:00
|
|
|
flags |= COGL_FEATURE_SHADERS_GLSL | COGL_FEATURE_OFFSCREEN;
|
2010-07-05 21:01:24 -04:00
|
|
|
/* Note GLES 2 core doesn't support mipmaps for npot textures or
|
|
|
|
* repeat modes other than CLAMP_TO_EDGE. */
|
|
|
|
flags |= COGL_FEATURE_TEXTURE_NPOT_BASIC;
|
2008-06-02 06:58:57 -04:00
|
|
|
#endif
|
|
|
|
|
2009-04-15 14:25:55 -04:00
|
|
|
flags |= COGL_FEATURE_VBOS;
|
|
|
|
|
2010-03-22 09:33:55 -04:00
|
|
|
/* Both GLES 1.1 and GLES 2.0 support point sprites in core */
|
|
|
|
flags |= COGL_FEATURE_POINT_SPRITE;
|
|
|
|
|
2009-01-24 11:55:04 -05:00
|
|
|
/* Cache features */
|
2008-04-25 09:37:36 -04:00
|
|
|
ctx->feature_flags = flags;
|
|
|
|
ctx->features_cached = TRUE;
|
|
|
|
}
|
|
|
|
|