2007-03-26 19:18:39 -04:00
|
|
|
/*
|
2009-03-30 12:07:31 -04:00
|
|
|
* Cogl
|
2007-03-26 19:18:39 -04:00
|
|
|
*
|
2009-04-27 10:48:12 -04:00
|
|
|
* An object oriented GL/GLES Abstraction/Utility Layer
|
2007-03-26 19:18:39 -04:00
|
|
|
*
|
2009-04-27 10:48:12 -04:00
|
|
|
* Copyright (C) 2007,2008,2009 Intel Corporation.
|
2007-03-26 19:18:39 -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-26 19:18:39 -04:00
|
|
|
*/
|
|
|
|
|
2007-10-12 04:17:00 -04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2007-04-27 17:13:06 -04:00
|
|
|
#include "config.h"
|
2007-10-12 04:17:00 -04:00
|
|
|
#endif
|
|
|
|
|
2007-04-27 17:13:06 -04:00
|
|
|
#include <string.h>
|
2009-03-30 12:07:31 -04:00
|
|
|
|
|
|
|
#include "cogl.h"
|
2007-04-27 17:13:06 -04:00
|
|
|
|
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
|
|
|
|
2008-06-27 19:02:30 -04:00
|
|
|
#ifdef HAVE_CLUTTER_OSX
|
|
|
|
static gboolean
|
|
|
|
really_enable_npot (void)
|
|
|
|
{
|
|
|
|
/* OSX backend + ATI Radeon X1600 + NPOT texture + GL_REPEAT seems to crash
|
|
|
|
* http://bugzilla.openedhand.com/show_bug.cgi?id=929
|
|
|
|
*
|
|
|
|
* Temporary workaround until post 0.8 we rejig the features set up a
|
|
|
|
* little to allow the backend to overide.
|
|
|
|
*/
|
|
|
|
const char *gl_renderer;
|
|
|
|
const char *env_string;
|
|
|
|
|
|
|
|
/* Regardless of hardware, allow user to decide. */
|
|
|
|
env_string = g_getenv ("COGL_ENABLE_NPOT");
|
|
|
|
if (env_string != NULL)
|
|
|
|
return env_string[0] == '1';
|
|
|
|
|
|
|
|
gl_renderer = (char*)glGetString (GL_RENDERER);
|
|
|
|
if (strstr (gl_renderer, "ATI Radeon X1600") != NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-11-11 08:26:54 -05: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;
|
|
|
|
|
|
|
|
/* Get the OpenGL version number */
|
|
|
|
if ((version_string = (const char *) glGetString (GL_VERSION)) == NULL)
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
_cogl_check_driver_valid (GError **error)
|
|
|
|
{
|
|
|
|
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-09 20:57:32 -05:00
|
|
|
const char *gl_extensions;
|
2009-11-11 08:26:54 -05: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 11:42:53 -05:00
|
|
|
/* GL 1.3 supports all of the required functionality in core */
|
|
|
|
if (COGL_CHECK_GL_VERSION (major, minor, 1, 3))
|
|
|
|
return TRUE;
|
|
|
|
|
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-09 20:57:32 -05:00
|
|
|
gl_extensions = (const char*) glGetString (GL_EXTENSIONS);
|
2009-11-11 11:42:53 -05:00
|
|
|
|
|
|
|
/* OpenGL 1.2 is only supported if we have the multitexturing
|
|
|
|
extension */
|
2010-02-05 11:32:19 -05:00
|
|
|
if (!_cogl_check_extension ("GL_ARB_multitexture", gl_extensions))
|
2009-11-11 11:42:53 -05: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 08:26:54 -05: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;
|
|
|
|
}
|
|
|
|
|
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-gl.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[] =
|
|
|
|
{
|
2010-09-13 06:30:30 -04:00
|
|
|
#include "cogl-feature-functions-gl.h"
|
2009-11-17 08:52:40 -05:00
|
|
|
};
|
|
|
|
|
2009-03-30 12:07:31 -04:00
|
|
|
void
|
|
|
|
_cogl_features_init (void)
|
2007-05-16 05:08:30 -04:00
|
|
|
{
|
2009-11-14 09:59:59 -05:00
|
|
|
CoglFeatureFlags flags = 0;
|
|
|
|
CoglFeatureFlagsPrivate flags_private = 0;
|
|
|
|
const char *gl_extensions;
|
|
|
|
GLint max_clip_planes = 0;
|
|
|
|
GLint num_stencil_bits = 0;
|
|
|
|
int gl_major = 0, gl_minor = 0;
|
|
|
|
int i;
|
2007-10-12 04:17:00 -04:00
|
|
|
|
2008-06-23 07:01:30 -04:00
|
|
|
_COGL_GET_CONTEXT (ctx, NO_RETVAL);
|
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 11:15:40 -05:00
|
|
|
|
2009-11-11 08:26:54 -05:00
|
|
|
_cogl_get_gl_version (&gl_major, &gl_minor);
|
|
|
|
|
2010-02-23 09:45:44 -05:00
|
|
|
flags = (COGL_FEATURE_TEXTURE_READ_PIXELS
|
|
|
|
| COGL_FEATURE_UNSIGNED_INT_INDICES);
|
2007-05-16 05:08:30 -04:00
|
|
|
|
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-09 20:57:32 -05:00
|
|
|
gl_extensions = (const char*) glGetString (GL_EXTENSIONS);
|
2007-05-16 05:08:30 -04:00
|
|
|
|
2009-11-17 12:22:22 -05:00
|
|
|
if (COGL_CHECK_GL_VERSION (gl_major, gl_minor, 2, 0) ||
|
2010-02-05 11:32:19 -05:00
|
|
|
_cogl_check_extension ("GL_ARB_texture_non_power_of_two", gl_extensions))
|
2008-04-25 09:37:36 -04:00
|
|
|
{
|
2008-06-27 19:02:30 -04:00
|
|
|
#ifdef HAVE_CLUTTER_OSX
|
|
|
|
if (really_enable_npot ())
|
|
|
|
#endif
|
2010-07-05 21:01:24 -04:00
|
|
|
flags |= COGL_FEATURE_TEXTURE_NPOT
|
|
|
|
| COGL_FEATURE_TEXTURE_NPOT_BASIC
|
|
|
|
| COGL_FEATURE_TEXTURE_NPOT_MIPMAP
|
|
|
|
| COGL_FEATURE_TEXTURE_NPOT_REPEAT;
|
2008-04-25 09:37:36 -04: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 11:15:40 -05:00
|
|
|
|
2007-05-25 06:56:09 -04:00
|
|
|
#ifdef GL_YCBCR_MESA
|
2010-02-05 11:32:19 -05:00
|
|
|
if (_cogl_check_extension ("GL_MESA_ycbcr_texture", gl_extensions))
|
2007-05-25 06:56:09 -04:00
|
|
|
{
|
2008-04-25 09:37:36 -04:00
|
|
|
flags |= COGL_FEATURE_TEXTURE_YUV;
|
2007-05-25 06:56:09 -04:00
|
|
|
}
|
|
|
|
#endif
|
2007-10-12 04:17:00 -04:00
|
|
|
|
2008-12-04 08:45:09 -05:00
|
|
|
GE( glGetIntegerv (GL_STENCIL_BITS, &num_stencil_bits) );
|
|
|
|
/* 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;
|
|
|
|
|
|
|
|
GE( glGetIntegerv (GL_MAX_CLIP_PLANES, &max_clip_planes) );
|
|
|
|
if (max_clip_planes >= 4)
|
|
|
|
flags |= COGL_FEATURE_FOUR_CLIP_PLANES;
|
2008-06-23 10:57:36 -04:00
|
|
|
|
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
|
|
|
gl_major, gl_minor,
|
|
|
|
gl_extensions))
|
2009-11-14 09:59:59 -05:00
|
|
|
{
|
2009-11-17 08:52:40 -05:00
|
|
|
flags |= cogl_feature_data[i].feature_flags;
|
2009-11-14 09:59:59 -05:00
|
|
|
flags_private |= cogl_feature_data[i].feature_flags_private;
|
|
|
|
}
|
2009-05-10 19:40:41 -04:00
|
|
|
|
2008-04-25 09:37:36 -04:00
|
|
|
/* Cache features */
|
|
|
|
ctx->feature_flags = flags;
|
2009-11-14 09:59:59 -05:00
|
|
|
ctx->feature_flags_private = flags_private;
|
2008-04-25 09:37:36 -04:00
|
|
|
}
|