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"
|
2010-11-04 18:25:52 -04:00
|
|
|
#include "cogl-context-private.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
|
2011-07-13 13:29:56 -04:00
|
|
|
_cogl_gles_update_features (CoglContext *context,
|
|
|
|
GError **error)
|
2008-04-25 09:37:36 -04:00
|
|
|
{
|
2011-05-24 17:34:10 -04:00
|
|
|
CoglPrivateFeatureFlags private_flags = 0;
|
2008-10-30 12:52:56 -04:00
|
|
|
CoglFeatureFlags flags = 0;
|
2010-11-05 08:28:33 -04:00
|
|
|
const char *gl_extensions;
|
2010-11-04 20:34:37 -04:00
|
|
|
int num_stencil_bits = 0;
|
2008-04-25 09:37:36 -04:00
|
|
|
|
2011-07-06 16:51:00 -04:00
|
|
|
/* We have to special case getting the pointer to the glGetString
|
|
|
|
function because we need to use it to determine what functions we
|
|
|
|
can expect */
|
|
|
|
context->glGetString =
|
|
|
|
(void *) _cogl_get_proc_address (_cogl_context_get_winsys (context),
|
|
|
|
"glGetString");
|
|
|
|
|
2010-11-05 08:28:33 -04:00
|
|
|
COGL_NOTE (WINSYS,
|
|
|
|
"Checking features\n"
|
|
|
|
" GL_VENDOR: %s\n"
|
|
|
|
" GL_RENDERER: %s\n"
|
|
|
|
" GL_VERSION: %s\n"
|
|
|
|
" GL_EXTENSIONS: %s",
|
2011-07-06 16:51:00 -04:00
|
|
|
context->glGetString (GL_VENDOR),
|
|
|
|
context->glGetString (GL_RENDERER),
|
|
|
|
context->glGetString (GL_VERSION),
|
|
|
|
context->glGetString (GL_EXTENSIONS));
|
2008-04-25 09:37:36 -04:00
|
|
|
|
2011-07-06 16:51:00 -04:00
|
|
|
gl_extensions = (const char*) context->glGetString (GL_EXTENSIONS);
|
2009-09-25 09:34:34 -04:00
|
|
|
|
2011-07-06 13:59:20 -04:00
|
|
|
_cogl_feature_check_ext_functions (context,
|
|
|
|
-1 /* GL major version */,
|
|
|
|
-1 /* GL minor version */,
|
2011-07-07 15:44:56 -04:00
|
|
|
gl_extensions);
|
2009-09-25 09:34:34 -04:00
|
|
|
|
2011-07-06 16:51:00 -04:00
|
|
|
GE( context, 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;
|
|
|
|
|
2011-07-07 15:44:56 -04:00
|
|
|
#ifdef HAVE_COGL_GLES
|
|
|
|
if (context->driver == COGL_DRIVER_GLES1)
|
|
|
|
{
|
|
|
|
int max_clip_planes;
|
|
|
|
GE( context, glGetIntegerv (GL_MAX_CLIP_PLANES, &max_clip_planes) );
|
|
|
|
if (max_clip_planes >= 4)
|
|
|
|
flags |= COGL_FEATURE_FOUR_CLIP_PLANES;
|
|
|
|
}
|
2010-12-05 13:02:05 -05:00
|
|
|
#endif
|
2008-04-25 09:37:36 -04:00
|
|
|
|
2011-07-07 15:44:56 -04:00
|
|
|
if (context->driver == COGL_DRIVER_GLES2)
|
|
|
|
{
|
|
|
|
flags |= COGL_FEATURE_SHADERS_GLSL | COGL_FEATURE_OFFSCREEN;
|
|
|
|
/* 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;
|
|
|
|
flags |= COGL_FEATURE_DEPTH_RANGE;
|
|
|
|
}
|
2008-06-02 06:58:57 -04:00
|
|
|
|
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;
|
|
|
|
|
2011-07-06 13:59:20 -04:00
|
|
|
if (context->glGenRenderbuffers)
|
|
|
|
flags |= COGL_FEATURE_OFFSCREEN;
|
|
|
|
|
|
|
|
if (context->glBlitFramebuffer)
|
|
|
|
flags |= COGL_FEATURE_OFFSCREEN_BLIT;
|
|
|
|
|
|
|
|
if (_cogl_check_extension ("GL_OES_element_index_uint", gl_extensions))
|
|
|
|
flags |= COGL_FEATURE_UNSIGNED_INT_INDICES;
|
|
|
|
|
|
|
|
if (_cogl_check_extension ("GL_OES_texture_npot", gl_extensions) ||
|
|
|
|
_cogl_check_extension ("GL_IMG_texture_npot", gl_extensions))
|
|
|
|
flags |= (COGL_FEATURE_TEXTURE_NPOT |
|
|
|
|
COGL_FEATURE_TEXTURE_NPOT_BASIC |
|
|
|
|
COGL_FEATURE_TEXTURE_NPOT_MIPMAP |
|
|
|
|
COGL_FEATURE_TEXTURE_NPOT_REPEAT);
|
|
|
|
|
|
|
|
if (context->glTexImage3D)
|
|
|
|
flags |= COGL_FEATURE_TEXTURE_3D;
|
|
|
|
|
|
|
|
if (context->glMapBuffer)
|
|
|
|
/* The GL_OES_mapbuffer extension doesn't support mapping for
|
|
|
|
read */
|
|
|
|
flags |= COGL_FEATURE_MAP_BUFFER_FOR_WRITE;
|
|
|
|
|
|
|
|
if (context->glEGLImageTargetTexture2D)
|
|
|
|
flags |= COGL_PRIVATE_FEATURE_TEXTURE_2D_FROM_EGL_IMAGE;
|
2010-11-05 08:28:33 -04:00
|
|
|
|
2009-01-24 11:55:04 -05:00
|
|
|
/* Cache features */
|
2011-05-24 17:34:10 -04:00
|
|
|
context->private_feature_flags |= private_flags;
|
2010-11-05 08:28:33 -04:00
|
|
|
context->feature_flags |= flags;
|
2011-07-13 13:29:56 -04:00
|
|
|
|
|
|
|
return TRUE;
|
2008-04-25 09:37:36 -04:00
|
|
|
}
|