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
|
|
|
|
2010-11-05 08:28:33 -04:00
|
|
|
#include "cogl-private.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"
|
2011-07-27 07:30:02 -04:00
|
|
|
#include "cogl-renderer-private.h"
|
2009-09-25 09:34:34 -04:00
|
|
|
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
static CoglBool
|
2012-03-22 12:32:56 -04:00
|
|
|
_cogl_driver_pixel_format_from_gl_internal (CoglContext *context,
|
|
|
|
GLenum gl_int_format,
|
|
|
|
CoglPixelFormat *out_format)
|
|
|
|
{
|
|
|
|
/* It doesn't really matter we convert to exact same
|
|
|
|
format (some have no cogl match anyway) since format
|
|
|
|
is re-matched against cogl when getting or setting
|
|
|
|
texture image data.
|
|
|
|
*/
|
|
|
|
|
|
|
|
switch (gl_int_format)
|
|
|
|
{
|
|
|
|
case GL_ALPHA: case GL_ALPHA4: case GL_ALPHA8:
|
|
|
|
case GL_ALPHA12: case GL_ALPHA16:
|
|
|
|
|
|
|
|
*out_format = COGL_PIXEL_FORMAT_A_8;
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case GL_LUMINANCE: case GL_LUMINANCE4: case GL_LUMINANCE8:
|
|
|
|
case GL_LUMINANCE12: case GL_LUMINANCE16:
|
|
|
|
|
|
|
|
*out_format = COGL_PIXEL_FORMAT_G_8;
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case GL_RGB: case GL_RGB4: case GL_RGB5: case GL_RGB8:
|
|
|
|
case GL_RGB10: case GL_RGB12: case GL_RGB16: case GL_R3_G3_B2:
|
|
|
|
|
|
|
|
*out_format = COGL_PIXEL_FORMAT_RGB_888;
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case GL_RGBA: case GL_RGBA2: case GL_RGBA4: case GL_RGB5_A1:
|
|
|
|
case GL_RGBA8: case GL_RGB10_A2: case GL_RGBA12: case GL_RGBA16:
|
|
|
|
|
|
|
|
*out_format = COGL_PIXEL_FORMAT_RGBA_8888;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CoglPixelFormat
|
|
|
|
_cogl_driver_pixel_format_to_gl (CoglContext *context,
|
|
|
|
CoglPixelFormat format,
|
|
|
|
GLenum *out_glintformat,
|
|
|
|
GLenum *out_glformat,
|
|
|
|
GLenum *out_gltype)
|
|
|
|
{
|
|
|
|
CoglPixelFormat required_format;
|
|
|
|
GLenum glintformat;
|
|
|
|
GLenum glformat = 0;
|
|
|
|
GLenum gltype;
|
|
|
|
|
|
|
|
required_format = format;
|
|
|
|
|
|
|
|
/* Find GL equivalents */
|
|
|
|
switch (format)
|
|
|
|
{
|
|
|
|
case COGL_PIXEL_FORMAT_A_8:
|
|
|
|
glintformat = GL_ALPHA;
|
|
|
|
glformat = GL_ALPHA;
|
|
|
|
gltype = GL_UNSIGNED_BYTE;
|
|
|
|
break;
|
|
|
|
case COGL_PIXEL_FORMAT_G_8:
|
|
|
|
glintformat = GL_LUMINANCE;
|
|
|
|
glformat = GL_LUMINANCE;
|
|
|
|
gltype = GL_UNSIGNED_BYTE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case COGL_PIXEL_FORMAT_RGB_888:
|
|
|
|
glintformat = GL_RGB;
|
|
|
|
glformat = GL_RGB;
|
|
|
|
gltype = GL_UNSIGNED_BYTE;
|
|
|
|
break;
|
|
|
|
case COGL_PIXEL_FORMAT_BGR_888:
|
|
|
|
glintformat = GL_RGB;
|
|
|
|
glformat = GL_BGR;
|
|
|
|
gltype = GL_UNSIGNED_BYTE;
|
|
|
|
break;
|
|
|
|
case COGL_PIXEL_FORMAT_RGBA_8888:
|
|
|
|
case COGL_PIXEL_FORMAT_RGBA_8888_PRE:
|
|
|
|
glintformat = GL_RGBA;
|
|
|
|
glformat = GL_RGBA;
|
|
|
|
gltype = GL_UNSIGNED_BYTE;
|
|
|
|
break;
|
|
|
|
case COGL_PIXEL_FORMAT_BGRA_8888:
|
|
|
|
case COGL_PIXEL_FORMAT_BGRA_8888_PRE:
|
|
|
|
glintformat = GL_RGBA;
|
|
|
|
glformat = GL_BGRA;
|
|
|
|
gltype = GL_UNSIGNED_BYTE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* The following two types of channel ordering
|
|
|
|
* have no GL equivalent unless defined using
|
|
|
|
* system word byte ordering */
|
|
|
|
case COGL_PIXEL_FORMAT_ARGB_8888:
|
|
|
|
case COGL_PIXEL_FORMAT_ARGB_8888_PRE:
|
|
|
|
glintformat = GL_RGBA;
|
|
|
|
glformat = GL_BGRA;
|
|
|
|
#if G_BYTE_ORDER == G_LITTLE_ENDIAN
|
|
|
|
gltype = GL_UNSIGNED_INT_8_8_8_8;
|
|
|
|
#else
|
|
|
|
gltype = GL_UNSIGNED_INT_8_8_8_8_REV;
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
|
|
|
|
case COGL_PIXEL_FORMAT_ABGR_8888:
|
|
|
|
case COGL_PIXEL_FORMAT_ABGR_8888_PRE:
|
|
|
|
glintformat = GL_RGBA;
|
|
|
|
glformat = GL_RGBA;
|
|
|
|
#if G_BYTE_ORDER == G_LITTLE_ENDIAN
|
|
|
|
gltype = GL_UNSIGNED_INT_8_8_8_8;
|
|
|
|
#else
|
|
|
|
gltype = GL_UNSIGNED_INT_8_8_8_8_REV;
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
|
|
|
|
case COGL_PIXEL_FORMAT_RGBA_1010102:
|
|
|
|
case COGL_PIXEL_FORMAT_RGBA_1010102_PRE:
|
|
|
|
glintformat = GL_RGBA;
|
|
|
|
glformat = GL_RGBA;
|
|
|
|
gltype = GL_UNSIGNED_INT_10_10_10_2;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case COGL_PIXEL_FORMAT_BGRA_1010102:
|
|
|
|
case COGL_PIXEL_FORMAT_BGRA_1010102_PRE:
|
|
|
|
glintformat = GL_RGBA;
|
|
|
|
glformat = GL_BGRA;
|
|
|
|
gltype = GL_UNSIGNED_INT_10_10_10_2;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case COGL_PIXEL_FORMAT_ABGR_2101010:
|
|
|
|
case COGL_PIXEL_FORMAT_ABGR_2101010_PRE:
|
|
|
|
glintformat = GL_RGBA;
|
|
|
|
glformat = GL_RGBA;
|
|
|
|
gltype = GL_UNSIGNED_INT_2_10_10_10_REV;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case COGL_PIXEL_FORMAT_ARGB_2101010:
|
|
|
|
case COGL_PIXEL_FORMAT_ARGB_2101010_PRE:
|
|
|
|
glintformat = GL_RGBA;
|
|
|
|
glformat = GL_BGRA;
|
|
|
|
gltype = GL_UNSIGNED_INT_2_10_10_10_REV;
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* The following three types of channel ordering
|
|
|
|
* are always defined using system word byte
|
|
|
|
* ordering (even according to GLES spec) */
|
|
|
|
case COGL_PIXEL_FORMAT_RGB_565:
|
|
|
|
glintformat = GL_RGB;
|
|
|
|
glformat = GL_RGB;
|
|
|
|
gltype = GL_UNSIGNED_SHORT_5_6_5;
|
|
|
|
break;
|
|
|
|
case COGL_PIXEL_FORMAT_RGBA_4444:
|
|
|
|
case COGL_PIXEL_FORMAT_RGBA_4444_PRE:
|
|
|
|
glintformat = GL_RGBA;
|
|
|
|
glformat = GL_RGBA;
|
|
|
|
gltype = GL_UNSIGNED_SHORT_4_4_4_4;
|
|
|
|
break;
|
|
|
|
case COGL_PIXEL_FORMAT_RGBA_5551:
|
|
|
|
case COGL_PIXEL_FORMAT_RGBA_5551_PRE:
|
|
|
|
glintformat = GL_RGBA;
|
|
|
|
glformat = GL_RGBA;
|
|
|
|
gltype = GL_UNSIGNED_SHORT_5_5_5_1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case COGL_PIXEL_FORMAT_ANY:
|
|
|
|
case COGL_PIXEL_FORMAT_YUV:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* All of the pixel formats are handled above so if this hits then
|
|
|
|
we've been given an invalid pixel format */
|
|
|
|
g_assert (glformat != 0);
|
|
|
|
|
|
|
|
if (out_glintformat != NULL)
|
|
|
|
*out_glintformat = glintformat;
|
|
|
|
if (out_glformat != NULL)
|
|
|
|
*out_glformat = glformat;
|
|
|
|
if (out_gltype != NULL)
|
|
|
|
*out_gltype = gltype;
|
|
|
|
|
|
|
|
return required_format;
|
|
|
|
}
|
|
|
|
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
static CoglBool
|
2012-03-22 12:32:56 -04:00
|
|
|
_cogl_get_gl_version (CoglContext *ctx,
|
|
|
|
int *major_out,
|
|
|
|
int *minor_out)
|
2009-11-11 08:26:54 -05:00
|
|
|
{
|
|
|
|
const char *version_string, *major_end, *minor_end;
|
|
|
|
int major = 0, minor = 0;
|
|
|
|
|
|
|
|
/* Get the OpenGL version number */
|
2011-07-06 16:51:00 -04:00
|
|
|
if ((version_string = (const char *) ctx->glGetString (GL_VERSION)) == NULL)
|
2009-11-11 08:26:54 -05: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;
|
|
|
|
}
|
|
|
|
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
static CoglBool
|
2011-07-13 13:29:56 -04:00
|
|
|
check_gl_version (CoglContext *ctx,
|
|
|
|
GError **error)
|
2009-11-11 08:26:54 -05: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-09 20:57:32 -05:00
|
|
|
const char *gl_extensions;
|
2009-11-11 08:26:54 -05:00
|
|
|
|
2012-03-22 12:32:56 -04:00
|
|
|
if (!_cogl_get_gl_version (ctx, &major, &minor))
|
2009-11-11 08:26:54 -05:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
|
2011-07-06 16:51:00 -04:00
|
|
|
gl_extensions = (const char*) ctx->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;
|
|
|
|
}
|
|
|
|
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
static CoglBool
|
2012-03-22 12:32:56 -04:00
|
|
|
_cogl_driver_update_features (CoglContext *ctx,
|
|
|
|
GError **error)
|
2007-05-16 05:08:30 -04:00
|
|
|
{
|
2011-05-24 17:34:10 -04:00
|
|
|
CoglPrivateFeatureFlags private_flags = 0;
|
2010-11-04 20:34:37 -04: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 04:17:00 -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 */
|
2012-03-22 12:32:56 -04:00
|
|
|
ctx->glGetString =
|
|
|
|
(void *) _cogl_renderer_get_proc_address (ctx->display->renderer,
|
2011-07-27 07:30:02 -04:00
|
|
|
"glGetString");
|
2011-07-06 16:51:00 -04:00
|
|
|
|
2012-03-22 12:32:56 -04:00
|
|
|
if (!check_gl_version (ctx, error))
|
2011-07-13 13:29:56 -04:00
|
|
|
return FALSE;
|
|
|
|
|
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
|
|
|
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 11:15:40 -05:00
|
|
|
|
2012-03-22 12:32:56 -04:00
|
|
|
_cogl_get_gl_version (ctx, &gl_major, &gl_minor);
|
2009-11-11 08:26:54 -05:00
|
|
|
|
2012-05-14 10:02:52 -04:00
|
|
|
_cogl_gpu_info_init (ctx, &ctx->gpu);
|
|
|
|
|
2010-02-23 09:45:44 -05:00
|
|
|
flags = (COGL_FEATURE_TEXTURE_READ_PIXELS
|
2011-04-14 13:12:03 -04:00
|
|
|
| COGL_FEATURE_UNSIGNED_INT_INDICES
|
|
|
|
| COGL_FEATURE_DEPTH_RANGE);
|
2011-10-12 17:31:12 -04: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 05:08:30 -04:00
|
|
|
|
2011-10-13 09:02:37 -04: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 16:51:00 -04:00
|
|
|
gl_extensions = (const char *)ctx->glGetString (GL_EXTENSIONS);
|
2007-05-16 05:08:30 -04:00
|
|
|
|
2012-03-22 12:32:56 -04:00
|
|
|
_cogl_feature_check_ext_functions (ctx,
|
2011-07-06 13:59:20 -04:00
|
|
|
gl_major,
|
|
|
|
gl_minor,
|
2011-07-07 15:44:56 -04:00
|
|
|
gl_extensions);
|
2011-07-06 13:59:20 -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
|
|
|
{
|
2011-04-18 12:35:15 -04:00
|
|
|
flags |= COGL_FEATURE_TEXTURE_NPOT
|
|
|
|
| COGL_FEATURE_TEXTURE_NPOT_BASIC
|
|
|
|
| COGL_FEATURE_TEXTURE_NPOT_MIPMAP
|
|
|
|
| COGL_FEATURE_TEXTURE_NPOT_REPEAT;
|
2011-10-12 17:31:12 -04: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 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
|
|
|
|
2011-07-13 13:28:49 -04:00
|
|
|
if (_cogl_check_extension ("GL_MESA_pack_invert", gl_extensions))
|
|
|
|
private_flags |= COGL_PRIVATE_FEATURE_MESA_PACK_INVERT;
|
|
|
|
|
2011-07-06 16:51:00 -04:00
|
|
|
GE( ctx, 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)
|
2011-10-12 17:37:29 -04:00
|
|
|
private_flags |= COGL_PRIVATE_FEATURE_STENCIL_BUFFER;
|
2008-04-25 09:37:36 -04:00
|
|
|
|
2011-07-06 16:51:00 -04:00
|
|
|
GE( ctx, glGetIntegerv (GL_MAX_CLIP_PLANES, &max_clip_planes) );
|
2008-04-25 09:37:36 -04:00
|
|
|
if (max_clip_planes >= 4)
|
2011-10-13 04:24:58 -04:00
|
|
|
private_flags |= COGL_PRIVATE_FEATURE_FOUR_CLIP_PLANES;
|
2008-06-23 10:57:36 -04:00
|
|
|
|
2012-03-22 12:32:56 -04:00
|
|
|
if (ctx->glGenRenderbuffers)
|
2011-10-12 17:31:12 -04:00
|
|
|
{
|
|
|
|
flags |= COGL_FEATURE_OFFSCREEN;
|
|
|
|
COGL_FLAGS_SET (ctx->features, COGL_FEATURE_ID_OFFSCREEN, TRUE);
|
|
|
|
}
|
2011-07-06 13:59:20 -04:00
|
|
|
|
2012-03-22 12:32:56 -04:00
|
|
|
if (ctx->glBlitFramebuffer)
|
2011-10-12 17:47:42 -04:00
|
|
|
private_flags |= COGL_PRIVATE_FEATURE_OFFSCREEN_BLIT;
|
2011-07-06 13:59:20 -04:00
|
|
|
|
2012-03-22 12:32:56 -04:00
|
|
|
if (ctx->glRenderbufferStorageMultisampleIMG)
|
2011-10-12 17:31:12 -04:00
|
|
|
{
|
2011-08-23 08:55:12 -04:00
|
|
|
flags |= COGL_FEATURE_OFFSCREEN_MULTISAMPLE;
|
2011-10-12 17:31:12 -04:00
|
|
|
COGL_FLAGS_SET (ctx->features,
|
|
|
|
COGL_FEATURE_ID_OFFSCREEN_MULTISAMPLE, TRUE);
|
|
|
|
}
|
2011-07-06 13:59:20 -04: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 04:30:33 -04:00
|
|
|
private_flags |= COGL_PRIVATE_FEATURE_PBOS;
|
2011-07-06 13:59:20 -04:00
|
|
|
|
2011-08-01 06:00:59 -04:00
|
|
|
if (COGL_CHECK_GL_VERSION (gl_major, gl_minor, 2, 0) ||
|
|
|
|
_cogl_check_extension ("GL_ARB_point_sprite", gl_extensions))
|
2011-10-12 17:31:12 -04:00
|
|
|
{
|
|
|
|
flags |= COGL_FEATURE_POINT_SPRITE;
|
|
|
|
COGL_FLAGS_SET (ctx->features, COGL_FEATURE_ID_POINT_SPRITE, TRUE);
|
|
|
|
}
|
2011-08-01 06:00:59 -04:00
|
|
|
|
2012-03-22 12:32:56 -04:00
|
|
|
if (ctx->glGenPrograms)
|
2011-10-12 17:31:12 -04:00
|
|
|
{
|
|
|
|
flags |= COGL_FEATURE_SHADERS_ARBFP;
|
|
|
|
COGL_FLAGS_SET (ctx->features, COGL_FEATURE_ID_ARBFP, TRUE);
|
|
|
|
}
|
2011-07-06 13:59:20 -04:00
|
|
|
|
2012-03-22 12:32:56 -04:00
|
|
|
if (ctx->glCreateProgram)
|
2011-10-12 17:31:12 -04:00
|
|
|
{
|
|
|
|
flags |= COGL_FEATURE_SHADERS_GLSL;
|
|
|
|
COGL_FLAGS_SET (ctx->features, COGL_FEATURE_ID_GLSL, TRUE);
|
|
|
|
}
|
2011-07-06 13:59:20 -04:00
|
|
|
|
2012-03-22 12:32:56 -04:00
|
|
|
if (ctx->glGenBuffers)
|
2011-10-13 04:36:46 -04:00
|
|
|
{
|
|
|
|
private_flags |= COGL_PRIVATE_FEATURE_VBOS;
|
|
|
|
flags |= (COGL_FEATURE_MAP_BUFFER_FOR_READ |
|
|
|
|
COGL_FEATURE_MAP_BUFFER_FOR_WRITE);
|
2011-10-12 17:31:12 -04: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 04:36:46 -04:00
|
|
|
}
|
2011-07-06 13:59:20 -04:00
|
|
|
|
|
|
|
if (_cogl_check_extension ("GL_ARB_texture_rectangle", gl_extensions))
|
2011-10-12 17:31:12 -04:00
|
|
|
{
|
|
|
|
flags |= COGL_FEATURE_TEXTURE_RECTANGLE;
|
|
|
|
COGL_FLAGS_SET (ctx->features,
|
|
|
|
COGL_FEATURE_ID_TEXTURE_RECTANGLE, TRUE);
|
|
|
|
}
|
2011-07-06 13:59:20 -04:00
|
|
|
|
2012-03-22 12:32:56 -04:00
|
|
|
if (ctx->glTexImage3D)
|
2011-10-12 17:31:12 -04:00
|
|
|
{
|
|
|
|
flags |= COGL_FEATURE_TEXTURE_3D;
|
|
|
|
COGL_FLAGS_SET (ctx->features, COGL_FEATURE_ID_TEXTURE_3D, TRUE);
|
|
|
|
}
|
2011-07-06 13:59:20 -04:00
|
|
|
|
2012-03-22 12:32:56 -04:00
|
|
|
if (ctx->glEGLImageTargetTexture2D)
|
2011-07-06 13:59:20 -04:00
|
|
|
private_flags |= COGL_PRIVATE_FEATURE_TEXTURE_2D_FROM_EGL_IMAGE;
|
2009-05-10 19:40:41 -04:00
|
|
|
|
2012-02-22 11:55:34 -05:00
|
|
|
if (_cogl_check_extension ("GL_EXT_packed_depth_stencil", gl_extensions))
|
|
|
|
private_flags |= COGL_PRIVATE_FEATURE_EXT_PACKED_DEPTH_STENCIL;
|
|
|
|
|
2012-04-04 17:20:04 -04:00
|
|
|
if (ctx->glGenSamplers)
|
|
|
|
private_flags |= COGL_PRIVATE_FEATURE_SAMPLER_OBJECTS;
|
|
|
|
|
2008-04-25 09:37:36 -04:00
|
|
|
/* Cache features */
|
2012-03-22 12:32:56 -04:00
|
|
|
ctx->private_feature_flags |= private_flags;
|
|
|
|
ctx->feature_flags |= flags;
|
2011-07-13 13:29:56 -04:00
|
|
|
|
|
|
|
return TRUE;
|
2008-04-25 09:37:36 -04:00
|
|
|
}
|
2012-03-22 12:32:56 -04:00
|
|
|
|
|
|
|
const CoglDriverVtable
|
|
|
|
_cogl_driver_gl =
|
|
|
|
{
|
|
|
|
_cogl_driver_pixel_format_from_gl_internal,
|
|
|
|
_cogl_driver_pixel_format_to_gl,
|
|
|
|
_cogl_driver_update_features
|
|
|
|
};
|