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
|
|
|
*
|
|
|
|
* A basic GL/GLES Abstraction/Utility Layer
|
|
|
|
*
|
2009-03-30 12:07:31 -04:00
|
|
|
* Copyright (C) 2007,2008,2009 OpenedHand
|
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
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
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"
|
2007-04-27 17:13:06 -04:00
|
|
|
|
2007-03-27 17:09:11 -04:00
|
|
|
CoglFuncPtr
|
|
|
|
cogl_get_proc_address (const gchar* name)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-01-24 11:55:04 -05:00
|
|
|
gboolean
|
2007-03-27 17:09:11 -04:00
|
|
|
cogl_check_extension (const gchar *name, const gchar *ext)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
2008-04-25 09:37:36 -04:00
|
|
|
|
|
|
|
_COGL_GET_CONTEXT (ctx, NO_RETVAL);
|
|
|
|
|
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
|
2008-10-29 10:52:48 -04:00
|
|
|
flags |= COGL_FEATURE_SHADERS_GLSL | COGL_FEATURE_OFFSCREEN;
|
2008-06-02 06:58:57 -04:00
|
|
|
#endif
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|