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"
|
2010-06-02 10:16:14 -04:00
|
|
|
#include "cogl-context-winsys.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-11-14 09:59:59 -05:00
|
|
|
CoglFeatureFlags feature_flags;
|
|
|
|
CoglFeatureFlagsPrivate feature_flags_private;
|
|
|
|
gboolean features_cached;
|
2009-01-26 06:07:35 -05:00
|
|
|
|
2009-11-11 07:50:48 -05:00
|
|
|
CoglHandle default_material;
|
2010-04-08 07:21:04 -04:00
|
|
|
CoglHandle default_layer_0;
|
|
|
|
CoglHandle default_layer_n;
|
|
|
|
CoglHandle dummy_layer_dependant;
|
2009-11-11 07:50:48 -05:00
|
|
|
|
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
|
|
|
|
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;
|
2010-04-26 05:01:43 -04:00
|
|
|
|
|
|
|
GArray *texture_units;
|
|
|
|
int active_texture_unit;
|
2009-02-24 13:51:25 -05:00
|
|
|
|
2010-07-06 15:18:26 -04:00
|
|
|
CoglMaterialFogState legacy_fog_state;
|
|
|
|
|
2008-12-18 14:12:09 -05:00
|
|
|
/* Materials */
|
2010-06-22 09:02:17 -04:00
|
|
|
CoglMaterial *simple_material;
|
|
|
|
CoglMaterial *source_material;
|
2010-04-26 05:01:43 -04:00
|
|
|
GString *arbfp_source_buffer;
|
|
|
|
|
|
|
|
int legacy_state_set;
|
2009-01-26 06:07:35 -05:00
|
|
|
|
|
|
|
/* 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... */
|
2010-06-22 09:02:17 -04:00
|
|
|
CoglMaterial *current_material;
|
2010-04-08 07:21:04 -04:00
|
|
|
unsigned long current_material_changes_since_flush;
|
2010-04-26 05:01:43 -04:00
|
|
|
gboolean current_material_skip_gl_color;
|
2010-04-08 07:21:04 -04:00
|
|
|
|
|
|
|
GArray *material0_nodes;
|
|
|
|
GArray *material1_nodes;
|
|
|
|
|
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-04-08 07:21:04 -04:00
|
|
|
gboolean gl_blend_enable_cache;
|
|
|
|
|
2010-05-26 06:33:32 -04:00
|
|
|
gboolean depth_test_enabled_cache;
|
|
|
|
CoglDepthTestFunction depth_test_function_cache;
|
|
|
|
gboolean depth_writing_enabled_cache;
|
|
|
|
float depth_range_near_cache;
|
|
|
|
float depth_range_far_cache;
|
|
|
|
|
|
|
|
gboolean legacy_depth_test_enabled;
|
|
|
|
|
2010-03-22 05:32:17 -04:00
|
|
|
float point_size_cache;
|
|
|
|
|
2010-07-05 18:24:34 -04:00
|
|
|
CoglBuffer *current_buffer[COGL_BUFFER_BIND_TARGET_COUNT];
|
2010-01-10 12:28:24 -05:00
|
|
|
|
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;
|
2010-06-22 09:02:17 -04:00
|
|
|
CoglMaterial *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
|
|
|
|
2010-06-22 09:02:17 -04:00
|
|
|
CoglMaterial *texture_download_material;
|
2009-08-30 06:36:11 -04:00
|
|
|
|
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-04-26 05:01:43 -04:00
|
|
|
/* Cached values for GL_MAX_TEXTURE_[IMAGE_]UNITS to avoid calling
|
2010-02-12 09:26:33 -05:00
|
|
|
glGetInteger too often */
|
|
|
|
GLint max_texture_units;
|
2010-04-26 05:01:43 -04:00
|
|
|
GLint max_texture_image_units;
|
|
|
|
GLint max_activateable_texture_units;
|
|
|
|
|
2010-04-08 07:21:04 -04:00
|
|
|
/* Fragment processing programs */
|
|
|
|
CoglHandle current_program;
|
|
|
|
|
2010-04-26 05:01:43 -04:00
|
|
|
CoglMaterialProgramType current_use_program_type;
|
2010-04-08 07:21:04 -04:00
|
|
|
GLuint current_gl_program;
|
2010-02-12 09:26:33 -05:00
|
|
|
|
2010-06-11 08:50:36 -04:00
|
|
|
/* List of types that will be considered a subclass of CoglTexture in
|
|
|
|
cogl_is_texture */
|
|
|
|
GSList *texture_types;
|
|
|
|
|
2010-07-03 18:56:44 -04:00
|
|
|
/* List of types that will be considered a subclass of CoglBuffer in
|
|
|
|
cogl_is_buffer */
|
|
|
|
GSList *buffer_types;
|
|
|
|
|
2009-07-27 20:34:33 -04:00
|
|
|
CoglContextDriver drv;
|
2010-06-02 10:16:14 -04:00
|
|
|
CoglContextWinsys winsys;
|
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 */
|