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
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* A Low Level GPU Graphics and Utilities API
|
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
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* Permission is hereby granted, free of charge, to any person
|
|
|
|
* obtaining a copy of this software and associated documentation
|
|
|
|
* files (the "Software"), to deal in the Software without
|
|
|
|
* restriction, including without limitation the rights to use, copy,
|
|
|
|
* modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
|
|
* of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
2007-03-27 17:09:11 -04:00
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
2007-03-27 17:09:11 -04:00
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
|
|
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
2010-03-01 07:56:10 -05:00
|
|
|
*
|
|
|
|
*
|
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
|
|
|
|
2010-11-04 18:25:52 -04:00
|
|
|
#include "cogl-context-private.h"
|
2013-01-20 13:47:40 -05:00
|
|
|
#include "cogl-util-gl-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"
|
2012-03-06 13:21:28 -05:00
|
|
|
#include "cogl-private.h"
|
2012-08-31 19:04:00 -04:00
|
|
|
#include "cogl-framebuffer-gl-private.h"
|
2012-09-10 16:45:33 -04:00
|
|
|
#include "cogl-texture-2d-gl-private.h"
|
2012-09-19 15:04:24 -04:00
|
|
|
#include "cogl-attribute-gl-private.h"
|
2012-09-19 15:37:32 -04:00
|
|
|
#include "cogl-clip-stack-gl-private.h"
|
2012-09-19 17:32:25 -04:00
|
|
|
#include "cogl-buffer-gl-private.h"
|
2009-09-25 09:34:34 -04:00
|
|
|
|
2012-05-23 13:19:29 -04:00
|
|
|
#ifndef GL_UNSIGNED_INT_24_8
|
|
|
|
#define GL_UNSIGNED_INT_24_8 0x84FA
|
|
|
|
#endif
|
|
|
|
#ifndef GL_DEPTH_STENCIL
|
|
|
|
#define GL_DEPTH_STENCIL 0x84F9
|
|
|
|
#endif
|
2014-01-14 10:52:45 -05:00
|
|
|
#ifndef GL_RG
|
|
|
|
#define GL_RG 0x8227
|
|
|
|
#endif
|
|
|
|
#ifndef GL_RG8
|
|
|
|
#define GL_RG8 0x822B
|
|
|
|
#endif
|
2012-05-23 13:19:29 -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)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
2014-01-14 10:52:45 -05:00
|
|
|
case COGL_PIXEL_FORMAT_RG_88:
|
|
|
|
if (cogl_has_feature (context, COGL_FEATURE_ID_TEXTURE_RG))
|
|
|
|
{
|
|
|
|
glintformat = GL_RG8;
|
|
|
|
glformat = GL_RG;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* If red-green textures aren't supported then we'll use RGB
|
|
|
|
* as an internal format. Note this should only end up
|
|
|
|
* mattering for downloading the data because Cogl will
|
|
|
|
* refuse to allocate a texture with RG components if RG
|
|
|
|
* textures aren't supported */
|
|
|
|
glintformat = GL_RGB;
|
|
|
|
glformat = GL_RGB;
|
|
|
|
required_format = COGL_PIXEL_FORMAT_RGB_888;
|
|
|
|
}
|
|
|
|
gltype = GL_UNSIGNED_BYTE;
|
|
|
|
break;
|
|
|
|
|
2012-03-21 12:06:59 -04:00
|
|
|
case COGL_PIXEL_FORMAT_BGRA_8888:
|
|
|
|
case COGL_PIXEL_FORMAT_BGRA_8888_PRE:
|
|
|
|
/* There is an extension to support this format */
|
2013-11-25 11:11:36 -05:00
|
|
|
if (_cogl_has_private_feature
|
|
|
|
(context, COGL_PRIVATE_FEATURE_TEXTURE_FORMAT_BGRA8888))
|
2012-03-21 12:06:59 -04:00
|
|
|
{
|
|
|
|
/* For some reason the extension says you have to specify
|
|
|
|
BGRA for the internal format too */
|
|
|
|
glintformat = GL_BGRA_EXT;
|
|
|
|
glformat = GL_BGRA_EXT;
|
|
|
|
gltype = GL_UNSIGNED_BYTE;
|
|
|
|
required_format = format;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* flow through */
|
|
|
|
|
2012-03-22 12:32:56 -04:00
|
|
|
/* Just one 24-bit ordering supported */
|
|
|
|
case COGL_PIXEL_FORMAT_RGB_888:
|
|
|
|
case COGL_PIXEL_FORMAT_BGR_888:
|
|
|
|
glintformat = GL_RGB;
|
|
|
|
glformat = GL_RGB;
|
|
|
|
gltype = GL_UNSIGNED_BYTE;
|
|
|
|
required_format = COGL_PIXEL_FORMAT_RGB_888;
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Just one 32-bit ordering supported */
|
|
|
|
case COGL_PIXEL_FORMAT_RGBA_8888:
|
|
|
|
case COGL_PIXEL_FORMAT_RGBA_8888_PRE:
|
|
|
|
case COGL_PIXEL_FORMAT_ARGB_8888:
|
|
|
|
case COGL_PIXEL_FORMAT_ARGB_8888_PRE:
|
|
|
|
case COGL_PIXEL_FORMAT_ABGR_8888:
|
|
|
|
case COGL_PIXEL_FORMAT_ABGR_8888_PRE:
|
|
|
|
case COGL_PIXEL_FORMAT_RGBA_1010102:
|
|
|
|
case COGL_PIXEL_FORMAT_RGBA_1010102_PRE:
|
|
|
|
case COGL_PIXEL_FORMAT_BGRA_1010102:
|
|
|
|
case COGL_PIXEL_FORMAT_BGRA_1010102_PRE:
|
|
|
|
case COGL_PIXEL_FORMAT_ABGR_2101010:
|
|
|
|
case COGL_PIXEL_FORMAT_ABGR_2101010_PRE:
|
|
|
|
case COGL_PIXEL_FORMAT_ARGB_2101010:
|
|
|
|
case COGL_PIXEL_FORMAT_ARGB_2101010_PRE:
|
|
|
|
glintformat = GL_RGBA;
|
|
|
|
glformat = GL_RGBA;
|
|
|
|
gltype = GL_UNSIGNED_BYTE;
|
|
|
|
required_format = COGL_PIXEL_FORMAT_RGBA_8888;
|
|
|
|
required_format |= (format & COGL_PREMULT_BIT);
|
|
|
|
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;
|
|
|
|
|
2012-05-23 13:19:29 -04:00
|
|
|
case COGL_PIXEL_FORMAT_DEPTH_16:
|
|
|
|
glintformat = GL_DEPTH_COMPONENT;
|
|
|
|
glformat = GL_DEPTH_COMPONENT;
|
|
|
|
gltype = GL_UNSIGNED_SHORT;
|
|
|
|
break;
|
|
|
|
case COGL_PIXEL_FORMAT_DEPTH_32:
|
|
|
|
glintformat = GL_DEPTH_COMPONENT;
|
|
|
|
glformat = GL_DEPTH_COMPONENT;
|
|
|
|
gltype = GL_UNSIGNED_INT;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case COGL_PIXEL_FORMAT_DEPTH_24_STENCIL_8:
|
|
|
|
glintformat = GL_DEPTH_STENCIL;
|
|
|
|
glformat = GL_DEPTH_STENCIL;
|
|
|
|
gltype = GL_UNSIGNED_INT_24_8;
|
|
|
|
break;
|
|
|
|
|
2012-03-22 12:32:56 -04:00
|
|
|
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_driver_update_features (CoglContext *context,
|
2012-08-31 14:28:27 -04:00
|
|
|
CoglError **error)
|
2008-04-25 09:37:36 -04:00
|
|
|
{
|
2013-11-25 11:11:36 -05:00
|
|
|
unsigned long private_features
|
|
|
|
[COGL_FLAGS_N_LONGS_FOR_SIZE (COGL_N_PRIVATE_FEATURES)] = { 0 };
|
2008-10-30 12:52:56 -04:00
|
|
|
CoglFeatureFlags flags = 0;
|
2012-09-26 15:32:36 -04:00
|
|
|
char **gl_extensions;
|
2013-11-25 11:11:36 -05:00
|
|
|
int i;
|
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 =
|
2011-07-27 07:30:02 -04:00
|
|
|
(void *) _cogl_renderer_get_proc_address (context->display->renderer,
|
2012-06-20 07:42:31 -04:00
|
|
|
"glGetString",
|
|
|
|
TRUE);
|
2011-07-06 16:51:00 -04:00
|
|
|
|
2012-09-26 15:32:36 -04:00
|
|
|
gl_extensions = _cogl_context_get_gl_extensions (context);
|
2008-04-25 09:37:36 -04:00
|
|
|
|
2012-09-26 15:32:36 -04:00
|
|
|
if (G_UNLIKELY (COGL_DEBUG_ENABLED (COGL_DEBUG_WINSYS)))
|
|
|
|
{
|
|
|
|
char *all_extensions = g_strjoinv (" ", gl_extensions);
|
|
|
|
|
|
|
|
COGL_NOTE (WINSYS,
|
|
|
|
"Checking features\n"
|
|
|
|
" GL_VENDOR: %s\n"
|
|
|
|
" GL_RENDERER: %s\n"
|
|
|
|
" GL_VERSION: %s\n"
|
|
|
|
" GL_EXTENSIONS: %s",
|
|
|
|
context->glGetString (GL_VENDOR),
|
|
|
|
context->glGetString (GL_RENDERER),
|
|
|
|
_cogl_context_get_gl_version (context),
|
|
|
|
all_extensions);
|
|
|
|
|
|
|
|
g_free (all_extensions);
|
|
|
|
}
|
2012-05-14 10:02:52 -04:00
|
|
|
|
2012-09-26 17:01:38 -04:00
|
|
|
context->glsl_major = 1;
|
|
|
|
context->glsl_minor = 0;
|
2013-08-24 20:59:31 -04:00
|
|
|
context->glsl_version_to_use = 100;
|
2012-09-26 17:01:38 -04:00
|
|
|
|
2012-09-26 15:32:36 -04:00
|
|
|
_cogl_gpu_info_init (context, &context->gpu);
|
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-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)
|
2013-11-25 11:11:36 -05:00
|
|
|
COGL_FLAGS_SET (private_features,
|
|
|
|
COGL_PRIVATE_FEATURE_FOUR_CLIP_PLANES, TRUE);
|
2011-07-07 15:44:56 -04:00
|
|
|
}
|
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;
|
2011-10-12 17:31:12 -04:00
|
|
|
COGL_FLAGS_SET (context->features, COGL_FEATURE_ID_GLSL, TRUE);
|
|
|
|
COGL_FLAGS_SET (context->features, COGL_FEATURE_ID_OFFSCREEN, TRUE);
|
|
|
|
COGL_FLAGS_SET (context->features,
|
|
|
|
COGL_FEATURE_ID_TEXTURE_NPOT_BASIC, TRUE);
|
|
|
|
COGL_FLAGS_SET (context->features, COGL_FEATURE_ID_DEPTH_RANGE, TRUE);
|
2011-10-13 09:02:37 -04:00
|
|
|
COGL_FLAGS_SET (context->features,
|
|
|
|
COGL_FEATURE_ID_MIRRORED_REPEAT, TRUE);
|
2012-11-08 11:56:02 -05:00
|
|
|
COGL_FLAGS_SET (context->features,
|
|
|
|
COGL_FEATURE_ID_PER_VERTEX_POINT_SIZE, TRUE);
|
2012-09-26 15:32:36 -04:00
|
|
|
|
2013-11-25 11:11:36 -05:00
|
|
|
COGL_FLAGS_SET (private_features,
|
|
|
|
COGL_PRIVATE_FEATURE_BLEND_CONSTANT, TRUE);
|
2011-07-07 15:44:56 -04:00
|
|
|
}
|
2012-09-26 15:32:36 -04:00
|
|
|
else if (context->driver == COGL_DRIVER_GLES1)
|
2013-11-25 11:11:36 -05:00
|
|
|
{
|
|
|
|
COGL_FLAGS_SET (private_features, COGL_PRIVATE_FEATURE_GL_FIXED, TRUE);
|
|
|
|
COGL_FLAGS_SET (private_features, COGL_PRIVATE_FEATURE_ALPHA_TEST, TRUE);
|
|
|
|
COGL_FLAGS_SET (private_features,
|
|
|
|
COGL_PRIVATE_FEATURE_BUILTIN_POINT_SIZE_UNIFORM, TRUE);
|
|
|
|
}
|
2008-06-02 06:58:57 -04:00
|
|
|
|
2013-11-25 11:11:36 -05:00
|
|
|
COGL_FLAGS_SET (private_features, COGL_PRIVATE_FEATURE_VBOS, TRUE);
|
|
|
|
COGL_FLAGS_SET (private_features, COGL_PRIVATE_FEATURE_ANY_GL, TRUE);
|
|
|
|
COGL_FLAGS_SET (private_features, COGL_PRIVATE_FEATURE_ALPHA_TEXTURES, TRUE);
|
2009-04-15 14:25:55 -04:00
|
|
|
|
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-10-12 17:31:12 -04:00
|
|
|
COGL_FLAGS_SET (context->features, COGL_FEATURE_ID_POINT_SPRITE, TRUE);
|
2010-03-22 09:33:55 -04:00
|
|
|
|
2011-07-06 13:59:20 -04:00
|
|
|
if (context->glGenRenderbuffers)
|
2011-10-12 17:31:12 -04:00
|
|
|
{
|
|
|
|
flags |= COGL_FEATURE_OFFSCREEN;
|
|
|
|
COGL_FLAGS_SET (context->features, COGL_FEATURE_ID_OFFSCREEN, TRUE);
|
|
|
|
}
|
2011-07-06 13:59:20 -04:00
|
|
|
|
|
|
|
if (context->glBlitFramebuffer)
|
2013-11-25 11:11:36 -05:00
|
|
|
COGL_FLAGS_SET (private_features,
|
|
|
|
COGL_PRIVATE_FEATURE_OFFSCREEN_BLIT, TRUE);
|
2011-07-06 13:59:20 -04:00
|
|
|
|
|
|
|
if (_cogl_check_extension ("GL_OES_element_index_uint", gl_extensions))
|
2011-10-12 17:31:12 -04:00
|
|
|
{
|
|
|
|
flags |= COGL_FEATURE_UNSIGNED_INT_INDICES;
|
|
|
|
COGL_FLAGS_SET (context->features,
|
|
|
|
COGL_FEATURE_ID_UNSIGNED_INT_INDICES, TRUE);
|
|
|
|
}
|
2011-07-06 13:59:20 -04:00
|
|
|
|
2012-05-23 13:19:29 -04:00
|
|
|
if (_cogl_check_extension ("GL_OES_depth_texture", gl_extensions))
|
|
|
|
{
|
|
|
|
flags |= COGL_FEATURE_DEPTH_TEXTURE;
|
|
|
|
COGL_FLAGS_SET (context->features, COGL_FEATURE_ID_DEPTH_TEXTURE, TRUE);
|
|
|
|
}
|
|
|
|
|
2011-10-12 17:31:12 -04:00
|
|
|
if (_cogl_check_extension ("GL_OES_texture_npot", gl_extensions))
|
|
|
|
{
|
|
|
|
flags |= (COGL_FEATURE_TEXTURE_NPOT |
|
|
|
|
COGL_FEATURE_TEXTURE_NPOT_BASIC |
|
|
|
|
COGL_FEATURE_TEXTURE_NPOT_MIPMAP |
|
|
|
|
COGL_FEATURE_TEXTURE_NPOT_REPEAT);
|
|
|
|
COGL_FLAGS_SET (context->features,
|
|
|
|
COGL_FEATURE_ID_TEXTURE_NPOT, TRUE);
|
|
|
|
COGL_FLAGS_SET (context->features,
|
|
|
|
COGL_FEATURE_ID_TEXTURE_NPOT_BASIC, TRUE);
|
|
|
|
COGL_FLAGS_SET (context->features,
|
|
|
|
COGL_FEATURE_ID_TEXTURE_NPOT_MIPMAP, TRUE);
|
|
|
|
COGL_FLAGS_SET (context->features,
|
|
|
|
COGL_FEATURE_ID_TEXTURE_NPOT_REPEAT, TRUE);
|
|
|
|
}
|
|
|
|
else if (_cogl_check_extension ("GL_IMG_texture_npot", gl_extensions))
|
|
|
|
{
|
|
|
|
flags |= (COGL_FEATURE_TEXTURE_NPOT_BASIC |
|
|
|
|
COGL_FEATURE_TEXTURE_NPOT_MIPMAP);
|
|
|
|
COGL_FLAGS_SET (context->features,
|
|
|
|
COGL_FEATURE_ID_TEXTURE_NPOT_BASIC, TRUE);
|
|
|
|
COGL_FLAGS_SET (context->features,
|
|
|
|
COGL_FEATURE_ID_TEXTURE_NPOT_MIPMAP, TRUE);
|
|
|
|
}
|
2011-07-06 13:59:20 -04:00
|
|
|
|
|
|
|
if (context->glTexImage3D)
|
2011-10-12 17:31:12 -04:00
|
|
|
{
|
|
|
|
flags |= COGL_FEATURE_TEXTURE_3D;
|
|
|
|
COGL_FLAGS_SET (context->features, COGL_FEATURE_ID_TEXTURE_3D, TRUE);
|
|
|
|
}
|
2011-07-06 13:59:20 -04:00
|
|
|
|
|
|
|
if (context->glMapBuffer)
|
2011-10-12 17:31:12 -04:00
|
|
|
{
|
|
|
|
/* The GL_OES_mapbuffer extension doesn't support mapping for
|
|
|
|
read */
|
|
|
|
flags |= COGL_FEATURE_MAP_BUFFER_FOR_WRITE;
|
|
|
|
COGL_FLAGS_SET (context->features,
|
|
|
|
COGL_FEATURE_ID_MAP_BUFFER_FOR_WRITE, TRUE);
|
|
|
|
}
|
2011-07-06 13:59:20 -04:00
|
|
|
|
|
|
|
if (context->glEGLImageTargetTexture2D)
|
2013-11-25 11:11:36 -05:00
|
|
|
COGL_FLAGS_SET (private_features,
|
|
|
|
COGL_PRIVATE_FEATURE_TEXTURE_2D_FROM_EGL_IMAGE, TRUE);
|
2010-11-05 08:28:33 -04:00
|
|
|
|
2012-02-22 12:02:28 -05:00
|
|
|
if (_cogl_check_extension ("GL_OES_packed_depth_stencil", gl_extensions))
|
2013-11-25 11:11:36 -05:00
|
|
|
COGL_FLAGS_SET (private_features,
|
|
|
|
COGL_PRIVATE_FEATURE_OES_PACKED_DEPTH_STENCIL, TRUE);
|
2012-02-22 12:02:28 -05:00
|
|
|
|
2012-03-21 12:06:59 -04:00
|
|
|
if (_cogl_check_extension ("GL_EXT_texture_format_BGRA8888", gl_extensions))
|
2013-11-25 11:11:36 -05:00
|
|
|
COGL_FLAGS_SET (private_features,
|
|
|
|
COGL_PRIVATE_FEATURE_TEXTURE_FORMAT_BGRA8888, TRUE);
|
2012-03-21 12:06:59 -04:00
|
|
|
|
2012-03-21 13:51:51 -04:00
|
|
|
if (_cogl_check_extension ("GL_EXT_unpack_subimage", gl_extensions))
|
2013-11-25 11:11:36 -05:00
|
|
|
COGL_FLAGS_SET (private_features,
|
|
|
|
COGL_PRIVATE_FEATURE_UNPACK_SUBIMAGE, TRUE);
|
2012-03-21 13:51:51 -04:00
|
|
|
|
2013-01-10 20:13:34 -05:00
|
|
|
/* A nameless vendor implemented the extension, but got the case wrong
|
|
|
|
* per the spec. */
|
|
|
|
if (_cogl_check_extension ("GL_OES_EGL_sync", gl_extensions) ||
|
|
|
|
_cogl_check_extension ("GL_OES_egl_sync", gl_extensions))
|
2013-11-25 11:11:36 -05:00
|
|
|
COGL_FLAGS_SET (private_features, COGL_PRIVATE_FEATURE_OES_EGL_SYNC, TRUE);
|
2013-01-10 20:13:34 -05:00
|
|
|
|
2014-01-14 10:52:45 -05:00
|
|
|
if (_cogl_check_extension ("GL_EXT_texture_rg", gl_extensions))
|
|
|
|
COGL_FLAGS_SET (context->features,
|
|
|
|
COGL_FEATURE_ID_TEXTURE_RG,
|
|
|
|
TRUE);
|
|
|
|
|
2009-01-24 11:55:04 -05:00
|
|
|
/* Cache features */
|
2013-11-25 11:11:36 -05:00
|
|
|
for (i = 0; i < G_N_ELEMENTS (private_features); i++)
|
|
|
|
context->private_features[i] |= private_features[i];
|
2010-11-05 08:28:33 -04:00
|
|
|
context->feature_flags |= flags;
|
2011-07-13 13:29:56 -04:00
|
|
|
|
2012-09-26 15:32:36 -04:00
|
|
|
g_strfreev (gl_extensions);
|
|
|
|
|
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_gles =
|
|
|
|
{
|
|
|
|
_cogl_driver_pixel_format_from_gl_internal,
|
|
|
|
_cogl_driver_pixel_format_to_gl,
|
2012-08-31 19:04:00 -04:00
|
|
|
_cogl_driver_update_features,
|
|
|
|
_cogl_offscreen_gl_allocate,
|
|
|
|
_cogl_offscreen_gl_free,
|
|
|
|
_cogl_framebuffer_gl_flush_state,
|
|
|
|
_cogl_framebuffer_gl_clear,
|
|
|
|
_cogl_framebuffer_gl_query_bits,
|
|
|
|
_cogl_framebuffer_gl_finish,
|
|
|
|
_cogl_framebuffer_gl_discard_buffers,
|
|
|
|
_cogl_framebuffer_gl_draw_attributes,
|
|
|
|
_cogl_framebuffer_gl_draw_indexed_attributes,
|
2012-11-20 15:05:05 -05:00
|
|
|
_cogl_framebuffer_gl_read_pixels_into_bitmap,
|
2012-09-10 16:45:33 -04:00
|
|
|
_cogl_texture_2d_gl_free,
|
|
|
|
_cogl_texture_2d_gl_can_create,
|
|
|
|
_cogl_texture_2d_gl_init,
|
2012-11-22 18:01:08 -05:00
|
|
|
_cogl_texture_2d_gl_allocate,
|
2012-09-10 16:45:33 -04:00
|
|
|
_cogl_texture_2d_gl_copy_from_framebuffer,
|
|
|
|
_cogl_texture_2d_gl_get_gl_handle,
|
|
|
|
_cogl_texture_2d_gl_generate_mipmap,
|
|
|
|
_cogl_texture_2d_gl_copy_from_bitmap,
|
|
|
|
NULL, /* texture_2d_get_data */
|
2012-09-19 15:04:24 -04:00
|
|
|
_cogl_gl_flush_attributes_state,
|
2012-09-19 15:37:32 -04:00
|
|
|
_cogl_clip_stack_gl_flush,
|
2012-09-19 17:32:25 -04:00
|
|
|
_cogl_buffer_gl_create,
|
|
|
|
_cogl_buffer_gl_destroy,
|
2012-10-17 16:28:45 -04:00
|
|
|
_cogl_buffer_gl_map_range,
|
2012-09-19 17:32:25 -04:00
|
|
|
_cogl_buffer_gl_unmap,
|
|
|
|
_cogl_buffer_gl_set_data,
|
2012-03-22 12:32:56 -04:00
|
|
|
};
|