2008-04-25 09:37:36 -04:00
|
|
|
/*
|
2009-04-27 10:48:12 -04:00
|
|
|
* Cogl
|
2008-04-25 09:37:36 -04:00
|
|
|
*
|
2009-04-27 10:48:12 -04:00
|
|
|
* An object oriented GL/GLES Abstraction/Utility Layer
|
2008-04-25 09:37:36 -04:00
|
|
|
*
|
2009-04-27 10:48:12 -04:00
|
|
|
* Copyright (C) 2007,2008,2009 Intel Corporation.
|
2008-04-25 09:37:36 -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/>.
|
|
|
|
*
|
|
|
|
*
|
2008-04-25 09:37:36 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __COGL_CONTEXT_H
|
|
|
|
#define __COGL_CONTEXT_H
|
|
|
|
|
2009-10-13 18:09:42 -04:00
|
|
|
#include "cogl-internal.h"
|
2009-07-27 20:34:33 -04:00
|
|
|
#include "cogl-context-driver.h"
|
2008-04-25 09:37:36 -04:00
|
|
|
#include "cogl-primitives.h"
|
2008-12-04 08:45:09 -05:00
|
|
|
#include "cogl-clip-stack.h"
|
2009-02-24 13:51:25 -05:00
|
|
|
#include "cogl-matrix-stack.h"
|
2009-08-11 09:17:28 -04:00
|
|
|
#include "cogl-material-private.h"
|
2009-12-04 08:06:32 -05:00
|
|
|
#include "cogl-atlas.h"
|
2010-01-10 12:28:24 -05:00
|
|
|
#include "cogl-buffer-private.h"
|
2010-05-24 07:40:11 -04:00
|
|
|
#include "cogl-bitmask.h"
|
2008-05-27 13:42:50 -04:00
|
|
|
|
2008-04-25 09:37:36 -04:00
|
|
|
typedef struct
|
|
|
|
{
|
2008-11-18 11:24:09 -05:00
|
|
|
GLfloat v[3];
|
|
|
|
GLfloat t[2];
|
|
|
|
GLubyte c[4];
|
2008-04-25 09:37:36 -04:00
|
|
|
} CoglTextureGLVertex;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
/* Features cache */
|
2009-01-26 06:07:35 -05:00
|
|
|
CoglFeatureFlags feature_flags;
|
2009-07-27 20:34:33 -04:00
|
|
|
gboolean features_cached;
|
2009-01-26 06:07:35 -05:00
|
|
|
|
2009-11-11 07:50:48 -05:00
|
|
|
CoglHandle default_material;
|
|
|
|
|
2008-04-25 09:37:36 -04:00
|
|
|
/* Enable cache */
|
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
|
|
|
unsigned long enable_flags;
|
2009-01-26 06:07:35 -05:00
|
|
|
guint8 color_alpha;
|
|
|
|
|
2009-07-27 20:34:33 -04:00
|
|
|
gboolean enable_backface_culling;
|
2009-10-22 14:01:52 -04:00
|
|
|
CoglFrontWinding flushed_front_winding;
|
2009-07-27 20:34:33 -04:00
|
|
|
|
|
|
|
gboolean indirect;
|
2009-02-24 13:51:25 -05:00
|
|
|
|
2009-10-22 11:13:01 -04:00
|
|
|
/* A few handy matrix constants */
|
|
|
|
CoglMatrix identity_matrix;
|
|
|
|
CoglMatrix y_flip_matrix;
|
|
|
|
|
2009-10-13 18:09:42 -04:00
|
|
|
/* Client-side matrix stack or NULL if none */
|
2009-10-14 05:53:48 -04:00
|
|
|
CoglMatrixMode flushed_matrix_mode;
|
2009-09-28 21:58:27 -04:00
|
|
|
GList *texture_units;
|
2009-02-24 13:51:25 -05:00
|
|
|
|
2008-12-18 14:12:09 -05:00
|
|
|
/* Materials */
|
2009-11-11 07:50:48 -05:00
|
|
|
CoglHandle simple_material;
|
2009-01-26 06:07:35 -05:00
|
|
|
CoglHandle source_material;
|
|
|
|
|
|
|
|
/* Textures */
|
|
|
|
CoglHandle default_gl_texture_2d_tex;
|
|
|
|
CoglHandle default_gl_texture_rect_tex;
|
|
|
|
|
|
|
|
/* Batching geometry... */
|
|
|
|
/* We journal the texture rectangles we want to submit to OpenGL so
|
|
|
|
* we have an oppertunity to optimise the final order so that we
|
|
|
|
* can batch things together. */
|
|
|
|
GArray *journal;
|
|
|
|
GArray *logged_vertices;
|
|
|
|
GArray *polygon_vertices;
|
|
|
|
|
|
|
|
/* Some simple caching, to minimize state changes... */
|
|
|
|
CoglHandle current_material;
|
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
|
|
|
unsigned long current_material_flags;
|
2009-08-11 09:17:28 -04:00
|
|
|
CoglMaterialFlushOptions current_material_flush_options;
|
2009-01-26 06:07:35 -05:00
|
|
|
GArray *current_layers;
|
2010-05-19 19:16:49 -04:00
|
|
|
/* Bitmask of texture coordinates arrays that are enabled */
|
2010-05-24 07:40:11 -04:00
|
|
|
CoglBitmask texcoord_arrays_enabled;
|
|
|
|
/* These are temporary bitmasks that are used when disabling
|
|
|
|
texcoord arrays. They are here just to avoid allocating new ones
|
|
|
|
each time */
|
|
|
|
CoglBitmask texcoord_arrays_to_disable;
|
|
|
|
CoglBitmask temp_bitmask;
|
2008-12-11 10:33:38 -05:00
|
|
|
|
2010-01-10 12:28:24 -05:00
|
|
|
/* PBOs */
|
|
|
|
/* This can be used to check if a pbo is bound */
|
|
|
|
CoglBuffer *current_pbo;
|
|
|
|
|
2009-11-26 14:06:35 -05:00
|
|
|
/* Framebuffers */
|
|
|
|
GSList *framebuffer_stack;
|
2009-09-25 09:34:34 -04:00
|
|
|
CoglHandle window_buffer;
|
|
|
|
gboolean dirty_bound_framebuffer;
|
2009-10-21 18:24:49 -04:00
|
|
|
gboolean dirty_gl_viewport;
|
2009-01-26 06:07:35 -05:00
|
|
|
|
|
|
|
/* Primitives */
|
2010-04-08 12:43:27 -04:00
|
|
|
CoglHandle current_path;
|
2009-01-26 06:07:35 -05:00
|
|
|
CoglHandle stencil_material;
|
2008-12-04 08:45:09 -05:00
|
|
|
|
2009-05-28 08:47:18 -04:00
|
|
|
/* Pre-generated VBOs containing indices to generate GL_TRIANGLES
|
|
|
|
out of a vertex array of quads */
|
|
|
|
CoglHandle quad_indices_byte;
|
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
|
|
|
unsigned int quad_indices_short_len;
|
2009-05-28 08:47:18 -04:00
|
|
|
CoglHandle quad_indices_short;
|
|
|
|
|
2009-07-27 20:34:33 -04:00
|
|
|
gboolean in_begin_gl_block;
|
2009-07-18 11:59:54 -04:00
|
|
|
|
2009-08-30 06:36:11 -04:00
|
|
|
CoglHandle texture_download_material;
|
|
|
|
|
2010-01-29 07:19:42 -05:00
|
|
|
CoglAtlas *atlas;
|
|
|
|
CoglHandle atlas_texture;
|
2009-12-04 08:06:32 -05:00
|
|
|
|
2010-01-22 13:14:57 -05:00
|
|
|
/* This debugging variable is used to pick a colour for visually
|
|
|
|
displaying the quad batches. It needs to be global so that it can
|
|
|
|
be reset by cogl_clear. It needs to be reset to increase the
|
|
|
|
chances of getting the same colour during an animation */
|
|
|
|
guint8 journal_rectangles_color;
|
|
|
|
|
2010-02-12 09:26:33 -05:00
|
|
|
/* Cached value for GL_MAX_TEXTURE_UNITS to avoid calling
|
|
|
|
glGetInteger too often */
|
|
|
|
GLint max_texture_units;
|
|
|
|
|
2009-07-27 20:34:33 -04:00
|
|
|
CoglContextDriver drv;
|
2008-04-25 09:37:36 -04:00
|
|
|
} CoglContext;
|
|
|
|
|
|
|
|
CoglContext *
|
|
|
|
_cogl_context_get_default ();
|
|
|
|
|
|
|
|
/* Obtains the context and returns retval if NULL */
|
|
|
|
#define _COGL_GET_CONTEXT(ctxvar, retval) \
|
|
|
|
CoglContext *ctxvar = _cogl_context_get_default (); \
|
|
|
|
if (ctxvar == NULL) return retval;
|
|
|
|
|
2009-01-26 06:07:35 -05:00
|
|
|
#define NO_RETVAL
|
2008-04-25 09:37:36 -04:00
|
|
|
|
|
|
|
#endif /* __COGL_CONTEXT_H */
|