2007-03-27 21:09:11 +00:00
|
|
|
/*
|
2009-03-30 16:07:31 +00:00
|
|
|
* Cogl
|
2007-03-27 21:09:11 +00:00
|
|
|
*
|
2009-04-27 14:48:12 +00:00
|
|
|
* An object oriented GL/GLES Abstraction/Utility Layer
|
2007-03-27 21:09:11 +00:00
|
|
|
*
|
2009-04-27 14:48:12 +00:00
|
|
|
* Copyright (C) 2007,2008,2009 Intel Corporation.
|
2007-03-27 21:09:11 +00: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 12:56:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*
|
2007-03-27 21:09:11 +00:00
|
|
|
*/
|
|
|
|
|
2007-10-12 08:17:00 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2007-04-28 00:37:11 +00:00
|
|
|
#include "config.h"
|
2007-10-12 08:17:00 +00:00
|
|
|
#endif
|
|
|
|
|
2007-04-28 00:37:11 +00:00
|
|
|
#include <string.h>
|
2009-01-28 14:09:51 +00:00
|
|
|
|
2009-03-30 16:07:31 +00:00
|
|
|
#include "cogl.h"
|
2008-04-25 13:37:36 +00:00
|
|
|
#include "cogl-internal.h"
|
2010-11-04 22:25:52 +00:00
|
|
|
#include "cogl-context-private.h"
|
2009-11-17 13:52:40 +00:00
|
|
|
#include "cogl-feature-private.h"
|
2009-09-25 13:34:34 +00:00
|
|
|
|
2009-11-11 13:26:54 +00:00
|
|
|
gboolean
|
2010-11-05 12:28:33 +00:00
|
|
|
_cogl_gl_check_version (GError **error)
|
2009-11-11 13:26:54 +00:00
|
|
|
{
|
|
|
|
/* The GLES backend doesn't have any particular version requirements */
|
|
|
|
return TRUE;
|
|
|
|
}
|
2007-03-27 21:09:11 +00:00
|
|
|
|
2009-11-17 13:52:40 +00: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 14:59:59 +00:00
|
|
|
namespaces, extension_names, \
|
|
|
|
feature_flags, feature_flags_private) \
|
2009-11-17 13:52:40 +00: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 13:23:10 +00:00
|
|
|
{ NULL, 0 }, \
|
2009-11-17 13:52:40 +00:00
|
|
|
};
|
2010-09-13 10:30:30 +00:00
|
|
|
#include "cogl-feature-functions-gles.h"
|
2009-11-17 13:52:40 +00:00
|
|
|
|
|
|
|
/* Define an array of features */
|
|
|
|
#undef COGL_FEATURE_BEGIN
|
|
|
|
#define COGL_FEATURE_BEGIN(name, min_gl_major, min_gl_minor, \
|
2009-11-14 14:59:59 +00:00
|
|
|
namespaces, extension_names, \
|
|
|
|
feature_flags, feature_flags_private) \
|
2009-11-17 13:52:40 +00:00
|
|
|
{ min_gl_major, min_gl_minor, namespaces, \
|
2010-11-05 12:28:33 +00:00
|
|
|
extension_names, feature_flags, feature_flags_private, 0, \
|
|
|
|
cogl_feature_ ## name ## _funcs },
|
2009-11-17 13:52:40 +00:00
|
|
|
#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[] =
|
|
|
|
{
|
2010-10-14 15:32:13 +00:00
|
|
|
#include "cogl-feature-functions-gles.h"
|
2009-11-17 13:52:40 +00:00
|
|
|
};
|
|
|
|
|
2010-11-05 00:34:37 +00:00
|
|
|
#undef COGL_FEATURE_BEGIN
|
|
|
|
#define COGL_FEATURE_BEGIN(a, b, c, d, e, f, g)
|
|
|
|
#undef COGL_FEATURE_FUNCTION
|
|
|
|
#define COGL_FEATURE_FUNCTION(ret, name, args) \
|
2010-11-05 12:28:33 +00:00
|
|
|
context->drv.pf_ ## name = NULL;
|
2010-11-05 00:34:37 +00:00
|
|
|
#undef COGL_FEATURE_END
|
|
|
|
#define COGL_FEATURE_END()
|
|
|
|
|
|
|
|
static void
|
2010-11-05 12:28:33 +00:00
|
|
|
initialize_function_table (CoglContext *context)
|
2010-11-05 00:34:37 +00:00
|
|
|
{
|
|
|
|
#include "cogl-feature-functions-gles.h"
|
|
|
|
}
|
|
|
|
|
2010-11-05 12:28:33 +00:00
|
|
|
/* Query the GL extensions and lookup the corresponding function
|
|
|
|
* pointers. Theoretically the list of extensions can change for
|
|
|
|
* different GL contexts so it is the winsys backend's responsiblity
|
|
|
|
* to know when to re-query the GL extensions. */
|
2007-03-27 21:09:11 +00:00
|
|
|
void
|
2010-11-05 12:28:33 +00:00
|
|
|
_cogl_gl_update_features (CoglContext *context)
|
2008-04-25 13:37:36 +00:00
|
|
|
{
|
2008-10-30 16:52:56 +00:00
|
|
|
CoglFeatureFlags flags = 0;
|
2010-11-05 12:28:33 +00:00
|
|
|
const char *gl_extensions;
|
2010-12-05 18:02:05 +00:00
|
|
|
#ifndef HAVE_COGL_GLES2
|
2010-11-05 00:34:37 +00:00
|
|
|
int max_clip_planes = 0;
|
2010-12-05 18:02:05 +00:00
|
|
|
#endif
|
2010-11-05 00:34:37 +00:00
|
|
|
int num_stencil_bits = 0;
|
|
|
|
int i;
|
2008-04-25 13:37:36 +00:00
|
|
|
|
2010-11-05 12:28:33 +00:00
|
|
|
COGL_NOTE (WINSYS,
|
|
|
|
"Checking features\n"
|
|
|
|
" GL_VENDOR: %s\n"
|
|
|
|
" GL_RENDERER: %s\n"
|
|
|
|
" GL_VERSION: %s\n"
|
|
|
|
" GL_EXTENSIONS: %s",
|
|
|
|
glGetString (GL_VENDOR),
|
|
|
|
glGetString (GL_RENDERER),
|
|
|
|
glGetString (GL_VERSION),
|
|
|
|
glGetString (GL_EXTENSIONS));
|
2008-04-25 13:37:36 +00:00
|
|
|
|
2009-09-25 13:34:34 +00:00
|
|
|
gl_extensions = (const char*) glGetString (GL_EXTENSIONS);
|
|
|
|
|
|
|
|
|
2009-01-24 16:55:04 +00:00
|
|
|
GE( glGetIntegerv (GL_STENCIL_BITS, &num_stencil_bits) );
|
2008-12-04 13:45:09 +00:00
|
|
|
/* We need at least three stencil bits to combine clips */
|
|
|
|
if (num_stencil_bits > 2)
|
2008-04-25 13:37:36 +00:00
|
|
|
flags |= COGL_FEATURE_STENCIL_BUFFER;
|
|
|
|
|
2010-12-05 18:02:05 +00:00
|
|
|
#ifndef HAVE_COGL_GLES2
|
2009-01-24 16:55:04 +00:00
|
|
|
GE( glGetIntegerv (GL_MAX_CLIP_PLANES, &max_clip_planes) );
|
2008-04-25 13:37:36 +00:00
|
|
|
if (max_clip_planes >= 4)
|
|
|
|
flags |= COGL_FEATURE_FOUR_CLIP_PLANES;
|
2010-12-05 18:02:05 +00:00
|
|
|
#endif
|
2008-04-25 13:37:36 +00:00
|
|
|
|
2008-06-02 10:58:57 +00:00
|
|
|
#ifdef HAVE_COGL_GLES2
|
2009-08-20 11:53:32 +00:00
|
|
|
flags |= COGL_FEATURE_SHADERS_GLSL | COGL_FEATURE_OFFSCREEN;
|
2010-07-06 01:01:24 +00: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 10:58:57 +00:00
|
|
|
#endif
|
|
|
|
|
2009-04-15 18:25:55 +00:00
|
|
|
flags |= COGL_FEATURE_VBOS;
|
|
|
|
|
2010-03-22 13:33:55 +00:00
|
|
|
/* Both GLES 1.1 and GLES 2.0 support point sprites in core */
|
|
|
|
flags |= COGL_FEATURE_POINT_SPRITE;
|
|
|
|
|
2010-11-05 12:28:33 +00:00
|
|
|
initialize_function_table (context);
|
|
|
|
|
|
|
|
for (i = 0; i < G_N_ELEMENTS (cogl_feature_data); i++)
|
|
|
|
if (_cogl_feature_check ("GL", cogl_feature_data + i,
|
|
|
|
0, 0,
|
|
|
|
gl_extensions,
|
|
|
|
context))
|
|
|
|
flags |= cogl_feature_data[i].feature_flags;
|
|
|
|
|
2009-01-24 16:55:04 +00:00
|
|
|
/* Cache features */
|
2010-11-05 12:28:33 +00:00
|
|
|
context->feature_flags |= flags;
|
2008-04-25 13:37:36 +00:00
|
|
|
}
|