2007-03-26 23:18:39 +00:00
|
|
|
/*
|
2009-03-30 16:07:31 +00:00
|
|
|
* Cogl
|
2007-03-26 23:18:39 +00:00
|
|
|
*
|
2009-04-27 14:48:12 +00:00
|
|
|
* An object oriented GL/GLES Abstraction/Utility Layer
|
2007-03-26 23:18:39 +00:00
|
|
|
*
|
2009-04-27 14:48:12 +00:00
|
|
|
* Copyright (C) 2007,2008,2009 Intel Corporation.
|
2007-03-26 23:18:39 +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-26 23:18:39 +00:00
|
|
|
*/
|
|
|
|
|
2007-10-12 08:17:00 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2007-04-27 21:13:06 +00:00
|
|
|
#include "config.h"
|
2007-10-12 08:17:00 +00:00
|
|
|
#endif
|
|
|
|
|
2007-04-27 21:13:06 +00:00
|
|
|
#include <string.h>
|
2009-03-30 16:07:31 +00:00
|
|
|
|
2010-11-05 12:28:33 +00:00
|
|
|
#include "cogl-private.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"
|
2011-07-27 11:30:02 +00:00
|
|
|
#include "cogl-renderer-private.h"
|
2009-09-25 13:34:34 +00:00
|
|
|
|
2009-11-11 13:26:54 +00:00
|
|
|
static gboolean
|
|
|
|
_cogl_get_gl_version (int *major_out, int *minor_out)
|
|
|
|
{
|
|
|
|
const char *version_string, *major_end, *minor_end;
|
|
|
|
int major = 0, minor = 0;
|
|
|
|
|
2011-07-06 20:51:00 +00:00
|
|
|
_COGL_GET_CONTEXT (ctx, FALSE);
|
|
|
|
|
2009-11-11 13:26:54 +00:00
|
|
|
/* Get the OpenGL version number */
|
2011-07-06 20:51:00 +00:00
|
|
|
if ((version_string = (const char *) ctx->glGetString (GL_VERSION)) == NULL)
|
2009-11-11 13:26:54 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* Extract the major number */
|
|
|
|
for (major_end = version_string; *major_end >= '0'
|
|
|
|
&& *major_end <= '9'; major_end++)
|
|
|
|
major = (major * 10) + *major_end - '0';
|
|
|
|
/* If there were no digits or the major number isn't followed by a
|
|
|
|
dot then it is invalid */
|
|
|
|
if (major_end == version_string || *major_end != '.')
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* Extract the minor number */
|
|
|
|
for (minor_end = major_end + 1; *minor_end >= '0'
|
|
|
|
&& *minor_end <= '9'; minor_end++)
|
|
|
|
minor = (minor * 10) + *minor_end - '0';
|
|
|
|
/* If there were no digits or there is an unexpected character then
|
|
|
|
it is invalid */
|
|
|
|
if (minor_end == major_end + 1
|
|
|
|
|| (*minor_end && *minor_end != ' ' && *minor_end != '.'))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
*major_out = major;
|
|
|
|
*minor_out = minor;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2011-07-13 17:29:56 +00:00
|
|
|
static gboolean
|
|
|
|
check_gl_version (CoglContext *ctx,
|
|
|
|
GError **error)
|
2009-11-11 13:26:54 +00:00
|
|
|
{
|
|
|
|
int major, minor;
|
cogl: improves header and coding style consistency
We've had complaints that our Cogl code/headers are a bit "special" so
this is a first pass at tidying things up by giving them some
consistency. These changes are all consistent with how new code in Cogl
is being written, but the style isn't consistently applied across all
code yet.
There are two parts to this patch; but since each one required a large
amount of effort to maintain tidy indenting it made sense to combine the
changes to reduce the time spent re indenting the same lines.
The first change is to use a consistent style for declaring function
prototypes in headers. Cogl headers now consistently use this style for
prototypes:
return_type
cogl_function_name (CoglType arg0,
CoglType arg1);
Not everyone likes this style, but it seems that most of the currently
active Cogl developers agree on it.
The second change is to constrain the use of redundant glib data types
in Cogl. Uses of gint, guint, gfloat, glong, gulong and gchar have all
been replaced with int, unsigned int, float, long, unsigned long and char
respectively. When talking about pixel data; use of guchar has been
replaced with guint8, otherwise unsigned char can be used.
The glib types that we continue to use for portability are gboolean,
gint{8,16,32,64}, guint{8,16,32,64} and gsize.
The general intention is that Cogl should look palatable to the widest
range of C programmers including those outside the Gnome community so
- especially for the public API - we want to minimize the number of
foreign looking typedefs.
2010-02-10 01:57:32 +00:00
|
|
|
const char *gl_extensions;
|
2009-11-11 13:26:54 +00:00
|
|
|
|
|
|
|
if (!_cogl_get_gl_version (&major, &minor))
|
|
|
|
{
|
|
|
|
g_set_error (error,
|
|
|
|
COGL_DRIVER_ERROR,
|
|
|
|
COGL_DRIVER_ERROR_UNKNOWN_VERSION,
|
|
|
|
"The OpenGL version could not be determined");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2009-11-11 16:42:53 +00:00
|
|
|
/* GL 1.3 supports all of the required functionality in core */
|
|
|
|
if (COGL_CHECK_GL_VERSION (major, minor, 1, 3))
|
|
|
|
return TRUE;
|
|
|
|
|
2011-07-06 20:51:00 +00:00
|
|
|
gl_extensions = (const char*) ctx->glGetString (GL_EXTENSIONS);
|
2009-11-11 16:42:53 +00:00
|
|
|
|
|
|
|
/* OpenGL 1.2 is only supported if we have the multitexturing
|
|
|
|
extension */
|
2010-02-05 16:32:19 +00:00
|
|
|
if (!_cogl_check_extension ("GL_ARB_multitexture", gl_extensions))
|
2009-11-11 16:42:53 +00:00
|
|
|
{
|
|
|
|
g_set_error (error,
|
|
|
|
COGL_DRIVER_ERROR,
|
|
|
|
COGL_DRIVER_ERROR_INVALID_VERSION,
|
|
|
|
"The OpenGL driver is missing "
|
|
|
|
"the GL_ARB_multitexture extension");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2009-11-11 13:26:54 +00:00
|
|
|
/* OpenGL 1.2 is required */
|
|
|
|
if (!COGL_CHECK_GL_VERSION (major, minor, 1, 2))
|
|
|
|
{
|
|
|
|
g_set_error (error,
|
|
|
|
COGL_DRIVER_ERROR,
|
|
|
|
COGL_DRIVER_ERROR_INVALID_VERSION,
|
|
|
|
"The OpenGL version of your driver (%i.%i) "
|
|
|
|
"is not compatible with Cogl",
|
|
|
|
major, minor);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2011-07-13 17:29:56 +00:00
|
|
|
gboolean
|
|
|
|
_cogl_gl_update_features (CoglContext *context,
|
|
|
|
GError **error)
|
2007-05-16 09:08:30 +00:00
|
|
|
{
|
2011-05-24 21:34:10 +00:00
|
|
|
CoglPrivateFeatureFlags private_flags = 0;
|
2010-11-05 00:34:37 +00:00
|
|
|
CoglFeatureFlags flags = 0;
|
|
|
|
const char *gl_extensions;
|
|
|
|
int max_clip_planes = 0;
|
|
|
|
int num_stencil_bits = 0;
|
|
|
|
int gl_major = 0, gl_minor = 0;
|
2007-10-12 08:17:00 +00:00
|
|
|
|
2011-07-13 17:29:56 +00:00
|
|
|
_COGL_GET_CONTEXT (ctx, FALSE);
|
2011-07-06 20:51:00 +00: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 =
|
2011-07-27 11:30:02 +00:00
|
|
|
(void *) _cogl_renderer_get_proc_address (context->display->renderer,
|
|
|
|
"glGetString");
|
2011-07-06 20:51:00 +00:00
|
|
|
|
2011-07-13 17:29:56 +00:00
|
|
|
if (!check_gl_version (context, error))
|
|
|
|
return FALSE;
|
|
|
|
|
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",
|
2011-07-06 20:51:00 +00:00
|
|
|
ctx->glGetString (GL_VENDOR),
|
|
|
|
ctx->glGetString (GL_RENDERER),
|
|
|
|
ctx->glGetString (GL_VERSION),
|
|
|
|
ctx->glGetString (GL_EXTENSIONS));
|
Fully integrates CoglMaterial throughout the rest of Cogl
This glues CoglMaterial in as the fundamental way that Cogl describes how to
fill in geometry.
It adds cogl_set_source (), which is used to set the material which will be
used by all subsequent drawing functions
It adds cogl_set_source_texture as a convenience for setting up a default
material with a single texture layer, and cogl_set_source_color is now also
a convenience for setting up a material with a solid fill.
"drawing functions" include, cogl_rectangle, cogl_texture_rectangle,
cogl_texture_multiple_rectangles, cogl_texture_polygon (though the
cogl_texture_* funcs have been renamed; see below for details),
cogl_path_fill/stroke and cogl_vertex_buffer_draw*.
cogl_texture_rectangle, cogl_texture_multiple_rectangles and
cogl_texture_polygon no longer take a texture handle; instead the current
source material is referenced. The functions have also been renamed to:
cogl_rectangle_with_texture_coords, cogl_rectangles_with_texture_coords
and cogl_polygon respectivly.
Most code that previously did:
cogl_texture_rectangle (tex_handle, x, y,...);
needs to be changed to now do:
cogl_set_source_texture (tex_handle);
cogl_rectangle_with_texture_coords (x, y,....);
In the less likely case where you were blending your source texture with a color
like:
cogl_set_source_color4ub (r,g,b,a); /* where r,g,b,a isn't just white */
cogl_texture_rectangle (tex_handle, x, y,...);
you will need your own material to do that:
mat = cogl_material_new ();
cogl_material_set_color4ub (r,g,b,a);
cogl_material_set_layer (mat, 0, tex_handle));
cogl_set_source_material (mat);
Code that uses the texture coordinates, 0, 0, 1, 1 don't need to use
cog_rectangle_with_texure_coords since these are the coordinates that
cogl_rectangle will use.
For cogl_texture_polygon; as well as dropping the texture handle, the
n_vertices and vertices arguments were transposed for consistency. So
code previously written as:
cogl_texture_polygon (tex_handle, 3, verts, TRUE);
need to be written as:
cogl_set_source_texture (tex_handle);
cogl_polygon (verts, 3, TRUE);
All of the unit tests have been updated to now use the material API and
test-cogl-material has been renamed to test-cogl-multitexture since any
textured quad is now technically a test of CoglMaterial but this test
specifically creates a material with multiple texture layers.
Note: The GLES backend has not been updated yet; that will be done in a
following commit.
2009-01-23 16:15:40 +00:00
|
|
|
|
2009-11-11 13:26:54 +00:00
|
|
|
_cogl_get_gl_version (&gl_major, &gl_minor);
|
|
|
|
|
2010-02-23 14:45:44 +00:00
|
|
|
flags = (COGL_FEATURE_TEXTURE_READ_PIXELS
|
2011-04-14 17:12:03 +00:00
|
|
|
| COGL_FEATURE_UNSIGNED_INT_INDICES
|
|
|
|
| COGL_FEATURE_DEPTH_RANGE);
|
2011-10-12 21:31:12 +00:00
|
|
|
COGL_FLAGS_SET (ctx->features,
|
|
|
|
COGL_FEATURE_ID_UNSIGNED_INT_INDICES, TRUE);
|
|
|
|
COGL_FLAGS_SET (ctx->features, COGL_FEATURE_ID_DEPTH_RANGE, TRUE);
|
2007-05-16 09:08:30 +00:00
|
|
|
|
2011-10-13 13:02:37 +00:00
|
|
|
if (COGL_CHECK_GL_VERSION (gl_major, gl_minor, 1, 4))
|
|
|
|
COGL_FLAGS_SET (ctx->features, COGL_FEATURE_ID_MIRRORED_REPEAT, TRUE);
|
|
|
|
|
2011-07-06 20:51:00 +00:00
|
|
|
gl_extensions = (const char *)ctx->glGetString (GL_EXTENSIONS);
|
2007-05-16 09:08:30 +00:00
|
|
|
|
2011-07-06 17:59:20 +00:00
|
|
|
_cogl_feature_check_ext_functions (context,
|
|
|
|
gl_major,
|
|
|
|
gl_minor,
|
2011-07-07 19:44:56 +00:00
|
|
|
gl_extensions);
|
2011-07-06 17:59:20 +00:00
|
|
|
|
2009-11-17 17:22:22 +00:00
|
|
|
if (COGL_CHECK_GL_VERSION (gl_major, gl_minor, 2, 0) ||
|
2010-02-05 16:32:19 +00:00
|
|
|
_cogl_check_extension ("GL_ARB_texture_non_power_of_two", gl_extensions))
|
2008-04-25 13:37:36 +00:00
|
|
|
{
|
2011-04-18 16:35:15 +00:00
|
|
|
flags |= COGL_FEATURE_TEXTURE_NPOT
|
|
|
|
| COGL_FEATURE_TEXTURE_NPOT_BASIC
|
|
|
|
| COGL_FEATURE_TEXTURE_NPOT_MIPMAP
|
|
|
|
| COGL_FEATURE_TEXTURE_NPOT_REPEAT;
|
2011-10-12 21:31:12 +00:00
|
|
|
COGL_FLAGS_SET (ctx->features, COGL_FEATURE_ID_TEXTURE_NPOT, TRUE);
|
|
|
|
COGL_FLAGS_SET (ctx->features,
|
|
|
|
COGL_FEATURE_ID_TEXTURE_NPOT_BASIC, TRUE);
|
|
|
|
COGL_FLAGS_SET (ctx->features,
|
|
|
|
COGL_FEATURE_ID_TEXTURE_NPOT_MIPMAP, TRUE);
|
|
|
|
COGL_FLAGS_SET (ctx->features,
|
|
|
|
COGL_FEATURE_ID_TEXTURE_NPOT_REPEAT, TRUE);
|
2008-04-25 13:37:36 +00:00
|
|
|
}
|
Fully integrates CoglMaterial throughout the rest of Cogl
This glues CoglMaterial in as the fundamental way that Cogl describes how to
fill in geometry.
It adds cogl_set_source (), which is used to set the material which will be
used by all subsequent drawing functions
It adds cogl_set_source_texture as a convenience for setting up a default
material with a single texture layer, and cogl_set_source_color is now also
a convenience for setting up a material with a solid fill.
"drawing functions" include, cogl_rectangle, cogl_texture_rectangle,
cogl_texture_multiple_rectangles, cogl_texture_polygon (though the
cogl_texture_* funcs have been renamed; see below for details),
cogl_path_fill/stroke and cogl_vertex_buffer_draw*.
cogl_texture_rectangle, cogl_texture_multiple_rectangles and
cogl_texture_polygon no longer take a texture handle; instead the current
source material is referenced. The functions have also been renamed to:
cogl_rectangle_with_texture_coords, cogl_rectangles_with_texture_coords
and cogl_polygon respectivly.
Most code that previously did:
cogl_texture_rectangle (tex_handle, x, y,...);
needs to be changed to now do:
cogl_set_source_texture (tex_handle);
cogl_rectangle_with_texture_coords (x, y,....);
In the less likely case where you were blending your source texture with a color
like:
cogl_set_source_color4ub (r,g,b,a); /* where r,g,b,a isn't just white */
cogl_texture_rectangle (tex_handle, x, y,...);
you will need your own material to do that:
mat = cogl_material_new ();
cogl_material_set_color4ub (r,g,b,a);
cogl_material_set_layer (mat, 0, tex_handle));
cogl_set_source_material (mat);
Code that uses the texture coordinates, 0, 0, 1, 1 don't need to use
cog_rectangle_with_texure_coords since these are the coordinates that
cogl_rectangle will use.
For cogl_texture_polygon; as well as dropping the texture handle, the
n_vertices and vertices arguments were transposed for consistency. So
code previously written as:
cogl_texture_polygon (tex_handle, 3, verts, TRUE);
need to be written as:
cogl_set_source_texture (tex_handle);
cogl_polygon (verts, 3, TRUE);
All of the unit tests have been updated to now use the material API and
test-cogl-material has been renamed to test-cogl-multitexture since any
textured quad is now technically a test of CoglMaterial but this test
specifically creates a material with multiple texture layers.
Note: The GLES backend has not been updated yet; that will be done in a
following commit.
2009-01-23 16:15:40 +00:00
|
|
|
|
2011-07-13 17:28:49 +00:00
|
|
|
if (_cogl_check_extension ("GL_MESA_pack_invert", gl_extensions))
|
|
|
|
private_flags |= COGL_PRIVATE_FEATURE_MESA_PACK_INVERT;
|
|
|
|
|
2011-07-06 20:51:00 +00:00
|
|
|
GE( ctx, 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)
|
2011-10-12 21:37:29 +00:00
|
|
|
private_flags |= COGL_PRIVATE_FEATURE_STENCIL_BUFFER;
|
2008-04-25 13:37:36 +00:00
|
|
|
|
2011-07-06 20:51:00 +00:00
|
|
|
GE( ctx, glGetIntegerv (GL_MAX_CLIP_PLANES, &max_clip_planes) );
|
2008-04-25 13:37:36 +00:00
|
|
|
if (max_clip_planes >= 4)
|
2011-10-13 08:24:58 +00:00
|
|
|
private_flags |= COGL_PRIVATE_FEATURE_FOUR_CLIP_PLANES;
|
2008-06-23 14:57:36 +00:00
|
|
|
|
2011-07-06 17:59:20 +00:00
|
|
|
if (context->glGenRenderbuffers)
|
2011-10-12 21:31:12 +00:00
|
|
|
{
|
|
|
|
flags |= COGL_FEATURE_OFFSCREEN;
|
|
|
|
COGL_FLAGS_SET (ctx->features, COGL_FEATURE_ID_OFFSCREEN, TRUE);
|
|
|
|
}
|
2011-07-06 17:59:20 +00:00
|
|
|
|
|
|
|
if (context->glBlitFramebuffer)
|
2011-10-12 21:47:42 +00:00
|
|
|
private_flags |= COGL_PRIVATE_FEATURE_OFFSCREEN_BLIT;
|
2011-07-06 17:59:20 +00:00
|
|
|
|
2011-08-23 12:55:12 +00:00
|
|
|
if (context->glRenderbufferStorageMultisampleIMG)
|
2011-10-12 21:31:12 +00:00
|
|
|
{
|
2011-08-23 12:55:12 +00:00
|
|
|
flags |= COGL_FEATURE_OFFSCREEN_MULTISAMPLE;
|
2011-10-12 21:31:12 +00:00
|
|
|
COGL_FLAGS_SET (ctx->features,
|
|
|
|
COGL_FEATURE_ID_OFFSCREEN_MULTISAMPLE, TRUE);
|
|
|
|
}
|
2011-07-06 17:59:20 +00:00
|
|
|
|
|
|
|
if (COGL_CHECK_GL_VERSION (gl_major, gl_minor, 2, 1) ||
|
|
|
|
_cogl_check_extension ("GL_EXT_pixel_buffer_object", gl_extensions))
|
2011-10-13 08:30:33 +00:00
|
|
|
private_flags |= COGL_PRIVATE_FEATURE_PBOS;
|
2011-07-06 17:59:20 +00:00
|
|
|
|
2011-08-01 10:00:59 +00:00
|
|
|
if (COGL_CHECK_GL_VERSION (gl_major, gl_minor, 2, 0) ||
|
|
|
|
_cogl_check_extension ("GL_ARB_point_sprite", gl_extensions))
|
2011-10-12 21:31:12 +00:00
|
|
|
{
|
|
|
|
flags |= COGL_FEATURE_POINT_SPRITE;
|
|
|
|
COGL_FLAGS_SET (ctx->features, COGL_FEATURE_ID_POINT_SPRITE, TRUE);
|
|
|
|
}
|
2011-08-01 10:00:59 +00:00
|
|
|
|
2011-07-06 17:59:20 +00:00
|
|
|
if (context->glGenPrograms)
|
2011-10-12 21:31:12 +00:00
|
|
|
{
|
|
|
|
flags |= COGL_FEATURE_SHADERS_ARBFP;
|
|
|
|
COGL_FLAGS_SET (ctx->features, COGL_FEATURE_ID_ARBFP, TRUE);
|
|
|
|
}
|
2011-07-06 17:59:20 +00:00
|
|
|
|
|
|
|
if (context->glCreateProgram)
|
2011-10-12 21:31:12 +00:00
|
|
|
{
|
|
|
|
flags |= COGL_FEATURE_SHADERS_GLSL;
|
|
|
|
COGL_FLAGS_SET (ctx->features, COGL_FEATURE_ID_GLSL, TRUE);
|
|
|
|
}
|
2011-07-06 17:59:20 +00:00
|
|
|
|
|
|
|
if (context->glGenBuffers)
|
2011-10-13 08:36:46 +00:00
|
|
|
{
|
|
|
|
private_flags |= COGL_PRIVATE_FEATURE_VBOS;
|
|
|
|
flags |= (COGL_FEATURE_MAP_BUFFER_FOR_READ |
|
|
|
|
COGL_FEATURE_MAP_BUFFER_FOR_WRITE);
|
2011-10-12 21:31:12 +00:00
|
|
|
COGL_FLAGS_SET (ctx->features,
|
|
|
|
COGL_FEATURE_ID_MAP_BUFFER_FOR_READ, TRUE);
|
|
|
|
COGL_FLAGS_SET (ctx->features,
|
|
|
|
COGL_FEATURE_ID_MAP_BUFFER_FOR_WRITE, TRUE);
|
2011-10-13 08:36:46 +00:00
|
|
|
}
|
2011-07-06 17:59:20 +00:00
|
|
|
|
|
|
|
if (_cogl_check_extension ("GL_ARB_texture_rectangle", gl_extensions))
|
2011-10-12 21:31:12 +00:00
|
|
|
{
|
|
|
|
flags |= COGL_FEATURE_TEXTURE_RECTANGLE;
|
|
|
|
COGL_FLAGS_SET (ctx->features,
|
|
|
|
COGL_FEATURE_ID_TEXTURE_RECTANGLE, TRUE);
|
|
|
|
}
|
2011-07-06 17:59:20 +00:00
|
|
|
|
|
|
|
if (context->glTexImage3D)
|
2011-10-12 21:31:12 +00:00
|
|
|
{
|
|
|
|
flags |= COGL_FEATURE_TEXTURE_3D;
|
|
|
|
COGL_FLAGS_SET (ctx->features, COGL_FEATURE_ID_TEXTURE_3D, TRUE);
|
|
|
|
}
|
2011-07-06 17:59:20 +00:00
|
|
|
|
|
|
|
if (context->glEGLImageTargetTexture2D)
|
|
|
|
private_flags |= COGL_PRIVATE_FEATURE_TEXTURE_2D_FROM_EGL_IMAGE;
|
2009-05-10 23:40:41 +00:00
|
|
|
|
2012-02-22 16:55:34 +00:00
|
|
|
if (_cogl_check_extension ("GL_EXT_packed_depth_stencil", gl_extensions))
|
|
|
|
private_flags |= COGL_PRIVATE_FEATURE_EXT_PACKED_DEPTH_STENCIL;
|
|
|
|
|
2008-04-25 13:37:36 +00:00
|
|
|
/* Cache features */
|
2011-05-24 21:34:10 +00:00
|
|
|
context->private_feature_flags |= private_flags;
|
2010-11-05 12:28:33 +00:00
|
|
|
context->feature_flags |= flags;
|
2011-07-13 17:29:56 +00:00
|
|
|
|
|
|
|
return TRUE;
|
2008-04-25 13:37:36 +00:00
|
|
|
}
|