2008-04-25 09:37:36 -04:00
|
|
|
/*
|
|
|
|
* Clutter COGL
|
|
|
|
*
|
|
|
|
* A basic GL/GLES Abstraction/Utility Layer
|
|
|
|
*
|
|
|
|
* Authored By Matthew Allum <mallum@openedhand.com>
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 OpenedHand
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __COGL_CONTEXT_H
|
|
|
|
#define __COGL_CONTEXT_H
|
|
|
|
|
|
|
|
#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"
|
|
|
|
#include "cogl-current-matrix.h"
|
2008-04-25 09:37:36 -04:00
|
|
|
|
2008-05-27 13:42:50 -04:00
|
|
|
#include "cogl-gles2-wrapper.h"
|
|
|
|
|
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;
|
|
|
|
gboolean features_cached;
|
|
|
|
|
2008-04-25 09:37:36 -04:00
|
|
|
/* Enable cache */
|
2009-01-26 06:07:35 -05:00
|
|
|
gulong enable_flags;
|
|
|
|
guint8 color_alpha;
|
|
|
|
|
|
|
|
gboolean enable_backface_culling;
|
2008-10-27 10:36:52 -04:00
|
|
|
|
2009-02-24 13:51:25 -05:00
|
|
|
gboolean indirect;
|
|
|
|
|
|
|
|
/* Client-side matrix stack or NULL if none */
|
|
|
|
CoglMatrixMode matrix_mode;
|
|
|
|
CoglMatrixStack *modelview_stack;
|
|
|
|
|
2008-06-02 08:34:10 -04:00
|
|
|
/* Cache of inverse projection matrix */
|
2009-01-20 11:20:54 -05:00
|
|
|
float inverse_projection[16];
|
2008-06-02 08:34:10 -04:00
|
|
|
|
2008-12-18 14:12:09 -05:00
|
|
|
/* Materials */
|
2009-01-26 06:07:35 -05:00
|
|
|
CoglHandle default_material;
|
|
|
|
CoglHandle source_material;
|
|
|
|
|
|
|
|
/* Textures */
|
|
|
|
CoglHandle default_gl_texture_2d_tex;
|
|
|
|
CoglHandle default_gl_texture_rect_tex;
|
|
|
|
CoglHandle texture_download_material;
|
|
|
|
|
|
|
|
/* 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 *static_indices;
|
|
|
|
GArray *polygon_vertices;
|
|
|
|
|
|
|
|
/* Some simple caching, to minimize state changes... */
|
|
|
|
CoglHandle current_material;
|
|
|
|
gulong current_material_flags;
|
|
|
|
GArray *current_layers;
|
|
|
|
guint n_texcoord_arrays_enabled;
|
2008-12-11 10:33:38 -05:00
|
|
|
|
2008-04-25 09:37:36 -04:00
|
|
|
/* Framebuffer objects */
|
2009-01-26 06:07:35 -05:00
|
|
|
CoglBufferTarget draw_buffer;
|
2008-05-27 13:42:50 -04:00
|
|
|
|
2008-12-04 08:45:09 -05:00
|
|
|
/* Clip stack */
|
2009-01-26 06:07:35 -05:00
|
|
|
CoglClipStackState clip;
|
|
|
|
|
|
|
|
/* Primitives */
|
|
|
|
floatVec2 path_start;
|
|
|
|
floatVec2 path_pen;
|
|
|
|
GArray *path_nodes;
|
|
|
|
guint last_path;
|
|
|
|
floatVec2 path_nodes_min;
|
|
|
|
floatVec2 path_nodes_max;
|
|
|
|
CoglHandle stencil_material;
|
2008-12-04 08:45:09 -05:00
|
|
|
|
2008-05-27 13:42:50 -04:00
|
|
|
#ifdef HAVE_COGL_GLES2
|
|
|
|
CoglGles2Wrapper gles2;
|
2008-10-29 10:52:48 -04:00
|
|
|
|
|
|
|
/* Viewport store for FBOs. Needed because glPushAttrib() isn't
|
|
|
|
supported */
|
|
|
|
GLint viewport_store[4];
|
2008-05-27 13:42:50 -04:00
|
|
|
#endif
|
2009-01-26 06:07:35 -05:00
|
|
|
|
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 */
|