2009-03-30 12:07:31 -04:00
|
|
|
/*
|
|
|
|
* Cogl
|
|
|
|
*
|
2009-04-27 10:48:12 -04:00
|
|
|
* An object oriented GL/GLES Abstraction/Utility Layer
|
2009-03-30 12:07:31 -04:00
|
|
|
*
|
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
|
|
|
* Copyright (C) 2007,2008,2009,2010 Intel Corporation.
|
2009-03-30 12:07:31 -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/>.
|
|
|
|
*
|
|
|
|
*
|
2009-03-30 12:07:31 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __COGL_INTERNAL_H
|
|
|
|
#define __COGL_INTERNAL_H
|
|
|
|
|
2009-10-13 18:09:42 -04:00
|
|
|
#include "cogl.h"
|
|
|
|
#include "cogl-matrix-stack.h"
|
2010-05-24 07:40:11 -04:00
|
|
|
#include "cogl-bitmask.h"
|
2009-10-13 18:09:42 -04:00
|
|
|
|
2009-10-13 10:27:06 -04:00
|
|
|
#ifdef COGL_HAS_XLIB_SUPPORT
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#endif
|
|
|
|
|
2009-10-22 14:01:52 -04:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
COGL_FRONT_WINDING_CLOCKWISE,
|
|
|
|
COGL_FRONT_WINDING_COUNTER_CLOCKWISE
|
|
|
|
} CoglFrontWinding;
|
|
|
|
|
2009-03-30 12:07:31 -04:00
|
|
|
typedef enum {
|
|
|
|
COGL_BOXED_NONE,
|
|
|
|
COGL_BOXED_INT,
|
|
|
|
COGL_BOXED_FLOAT,
|
|
|
|
COGL_BOXED_MATRIX
|
|
|
|
} CoglBoxedType;
|
|
|
|
|
|
|
|
typedef struct _CoglBoxedValue
|
|
|
|
{
|
|
|
|
CoglBoxedType type;
|
|
|
|
int size, count;
|
|
|
|
gboolean transpose;
|
|
|
|
|
|
|
|
union {
|
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
|
|
|
float float_value[4];
|
|
|
|
int int_value[4];
|
|
|
|
float matrix[16];
|
|
|
|
float *float_array;
|
|
|
|
int *int_array;
|
2010-10-15 13:00:29 -04:00
|
|
|
void *array;
|
2009-03-30 12:07:31 -04:00
|
|
|
} v;
|
|
|
|
} CoglBoxedValue;
|
|
|
|
|
2009-05-19 11:00:18 -04:00
|
|
|
#ifdef COGL_GL_DEBUG
|
2009-03-30 12:07:31 -04:00
|
|
|
|
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 *
|
|
|
|
cogl_gl_error_to_string (GLenum error_code);
|
2009-05-18 14:38:03 -04:00
|
|
|
|
2010-01-10 19:15:25 -05:00
|
|
|
#define GE(x) G_STMT_START { \
|
2009-05-19 09:44:29 -04:00
|
|
|
GLenum __err; \
|
|
|
|
(x); \
|
|
|
|
while ((__err = glGetError ()) != GL_NO_ERROR) \
|
|
|
|
{ \
|
|
|
|
g_warning ("%s: GL error (%d): %s\n", \
|
|
|
|
G_STRLOC, \
|
2009-05-21 10:04:38 -04:00
|
|
|
__err, \
|
2009-05-19 09:44:29 -04:00
|
|
|
cogl_gl_error_to_string (__err)); \
|
|
|
|
} } G_STMT_END
|
2009-03-30 12:07:31 -04:00
|
|
|
|
2010-01-10 19:15:25 -05:00
|
|
|
#define GE_RET(ret, x) G_STMT_START { \
|
|
|
|
GLenum __err; \
|
|
|
|
ret = (x); \
|
|
|
|
while ((__err = glGetError ()) != GL_NO_ERROR) \
|
|
|
|
{ \
|
|
|
|
g_warning ("%s: GL error (%d): %s\n", \
|
|
|
|
G_STRLOC, \
|
|
|
|
__err, \
|
|
|
|
cogl_gl_error_to_string (__err)); \
|
|
|
|
} } G_STMT_END
|
|
|
|
|
2009-05-19 09:44:29 -04:00
|
|
|
#else /* !COGL_GL_DEBUG */
|
2009-03-30 12:07:31 -04:00
|
|
|
|
|
|
|
#define GE(x) (x)
|
2010-01-10 19:15:25 -05:00
|
|
|
#define GE_RET(ret, x) (ret = (x))
|
2009-03-30 12:07:31 -04:00
|
|
|
|
2009-05-19 09:44:29 -04:00
|
|
|
#endif /* COGL_GL_DEBUG */
|
2009-03-30 12:07:31 -04:00
|
|
|
|
2010-04-08 07:21:04 -04:00
|
|
|
#define COGL_ENABLE_ALPHA_TEST (1<<1)
|
|
|
|
#define COGL_ENABLE_VERTEX_ARRAY (1<<2)
|
|
|
|
#define COGL_ENABLE_COLOR_ARRAY (1<<3)
|
|
|
|
#define COGL_ENABLE_BACKFACE_CULLING (1<<4)
|
2009-03-30 12:07:31 -04:00
|
|
|
|
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
|
|
|
void
|
|
|
|
_cogl_features_init (void);
|
|
|
|
|
|
|
|
int
|
|
|
|
_cogl_get_format_bpp (CoglPixelFormat format);
|
2010-02-05 11:32:19 -05:00
|
|
|
|
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
|
|
|
void
|
2010-03-19 05:16:08 -04:00
|
|
|
_cogl_enable (unsigned long flags);
|
2009-03-30 12:07:31 -04:00
|
|
|
|
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
|
2010-03-19 05:16:08 -04:00
|
|
|
_cogl_get_enable (void);
|
2009-03-30 12:07:31 -04:00
|
|
|
|
2009-10-22 14:01:52 -04:00
|
|
|
void
|
|
|
|
_cogl_flush_face_winding (void);
|
|
|
|
|
2010-05-24 07:40:11 -04:00
|
|
|
/* Disables the texcoord arrays that don't have a corresponding bit
|
2010-05-27 09:51:44 -04:00
|
|
|
set in the mask and sets ctx->texcoord_arrays_enabled to mask. Note
|
|
|
|
that it doesn't enable any extra texcoord arrays */
|
2010-05-19 19:16:49 -04:00
|
|
|
void
|
2010-05-24 07:40:11 -04:00
|
|
|
_cogl_disable_other_texcoord_arrays (const CoglBitmask *mask);
|
2010-05-19 19:16:49 -04:00
|
|
|
|
2010-04-22 08:48:49 -04:00
|
|
|
void
|
|
|
|
_cogl_transform_point (const CoglMatrix *matrix_mv,
|
|
|
|
const CoglMatrix *matrix_p,
|
|
|
|
const float *viewport,
|
|
|
|
float *x,
|
|
|
|
float *y);
|
|
|
|
|
2009-10-13 10:27:06 -04:00
|
|
|
#ifdef COGL_HAS_XLIB_SUPPORT
|
|
|
|
|
|
|
|
/*
|
|
|
|
* CoglX11FilterReturn:
|
|
|
|
* @COGL_XLIB_FILTER_CONTINUE: The event was not handled, continues the
|
|
|
|
* processing
|
|
|
|
* @COGL_XLIB_FILTER_REMOVE: Remove the event, stops the processing
|
|
|
|
*
|
|
|
|
* Return values for the #CoglX11FilterFunc function.
|
|
|
|
*/
|
|
|
|
typedef enum _CoglXlibFilterReturn {
|
|
|
|
COGL_XLIB_FILTER_CONTINUE,
|
|
|
|
COGL_XLIB_FILTER_REMOVE
|
|
|
|
} CoglXlibFilterReturn;
|
|
|
|
|
2010-05-19 11:13:07 -04:00
|
|
|
/*
|
|
|
|
* CoglXlibFilterFunc:
|
|
|
|
*
|
|
|
|
* A callback function that can be registered with
|
|
|
|
* _cogl_xlib_add_filter. The function should return
|
|
|
|
* %COGL_XLIB_FILTER_REMOVE if it wants to prevent further processing
|
|
|
|
* or %COGL_XLIB_FILTER_CONTINUE otherwise.
|
|
|
|
*/
|
|
|
|
typedef CoglXlibFilterReturn (* CoglXlibFilterFunc) (XEvent *xevent,
|
|
|
|
gpointer data);
|
|
|
|
|
2009-10-13 10:27:06 -04:00
|
|
|
/*
|
|
|
|
* cogl_xlib_handle_event:
|
|
|
|
* @xevent: pointer to XEvent structure
|
|
|
|
*
|
|
|
|
* This function processes a single X event; it can be used to hook
|
|
|
|
* into external X event retrieval (for example that done by Clutter
|
|
|
|
* or GDK).
|
|
|
|
*
|
|
|
|
* Return value: #CoglXlibFilterReturn. %COGL_XLIB_FILTER_REMOVE
|
|
|
|
* indicates that Cogl has internally handled the event and the
|
|
|
|
* caller should do no further processing. %COGL_XLIB_FILTER_CONTINUE
|
|
|
|
* indicates that Cogl is either not interested in the event,
|
|
|
|
* or has used the event to update internal state without taking
|
|
|
|
* any exclusive action.
|
|
|
|
*/
|
|
|
|
CoglXlibFilterReturn
|
|
|
|
_cogl_xlib_handle_event (XEvent *xevent);
|
|
|
|
|
2010-05-19 11:13:07 -04:00
|
|
|
/*
|
|
|
|
* _cogl_xlib_get_display:
|
|
|
|
*
|
|
|
|
* Return value: the Xlib display that will be used by the Xlib winsys
|
|
|
|
* backend. The display needs to be set with _cogl_xlib_set_display()
|
|
|
|
* before this function is called.
|
|
|
|
*/
|
|
|
|
Display *
|
|
|
|
_cogl_xlib_get_display (void);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* cogl_xlib_set_display:
|
|
|
|
*
|
|
|
|
* Sets the Xlib display that Cogl will use for the Xlib winsys
|
|
|
|
* backend. This function should eventually go away when Cogl gains a
|
|
|
|
* more complete winsys abstraction.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
_cogl_xlib_set_display (Display *display);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* _cogl_xlib_add_filter:
|
|
|
|
*
|
|
|
|
* Adds a callback function that will receive all X11 events. The
|
|
|
|
* function can stop further processing of the event by return
|
|
|
|
* %COGL_XLIB_FILTER_REMOVE.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
_cogl_xlib_add_filter (CoglXlibFilterFunc func,
|
|
|
|
gpointer data);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* _cogl_xlib_remove_filter:
|
|
|
|
*
|
|
|
|
* Removes a callback that was previously added with
|
|
|
|
* _cogl_xlib_add_filter().
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
_cogl_xlib_remove_filter (CoglXlibFilterFunc func,
|
|
|
|
gpointer data);
|
|
|
|
|
2009-10-13 10:27:06 -04:00
|
|
|
#endif /* COGL_HAS_XLIB_SUPPORT */
|
|
|
|
|
2009-11-14 09:59:59 -05:00
|
|
|
typedef enum _CoglFeatureFlagsPrivate
|
|
|
|
{
|
2010-08-05 05:59:03 -04:00
|
|
|
COGL_FEATURE_PRIVATE_PLACE_HOLDER = (1 << 0)
|
2009-11-14 09:59:59 -05:00
|
|
|
} CoglFeatureFlagsPrivate;
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
_cogl_features_available_private (CoglFeatureFlagsPrivate features);
|
|
|
|
|
2009-03-30 12:07:31 -04:00
|
|
|
#endif /* __COGL_INTERNAL_H */
|