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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "cogl.h"
|
|
|
|
#include "cogl-internal.h"
|
|
|
|
#include "cogl-context.h"
|
2008-06-23 10:57:36 -04:00
|
|
|
#include "cogl-clip-stack.h"
|
2008-04-25 09:37:36 -04:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <gmodule.h>
|
|
|
|
|
|
|
|
#define _COGL_MAX_BEZ_RECURSE_DEPTH 16
|
|
|
|
|
|
|
|
void
|
2008-05-05 08:01:19 -04:00
|
|
|
_cogl_rectangle (gint x,
|
|
|
|
gint y,
|
|
|
|
guint width,
|
|
|
|
guint height)
|
2008-04-25 09:37:36 -04:00
|
|
|
{
|
|
|
|
_COGL_GET_CONTEXT (ctx, NO_RETVAL);
|
|
|
|
|
|
|
|
cogl_enable (ctx->color_alpha < 255
|
|
|
|
? COGL_ENABLE_BLEND : 0);
|
|
|
|
|
|
|
|
GE( glRecti (x, y, x + width, y + height) );
|
|
|
|
}
|
|
|
|
|
2008-04-28 10:18:29 -04:00
|
|
|
|
2008-04-25 09:37:36 -04:00
|
|
|
void
|
2009-01-20 11:20:54 -05:00
|
|
|
_cogl_rectanglex (float x,
|
|
|
|
float y,
|
|
|
|
float width,
|
|
|
|
float height)
|
2008-04-25 09:37:36 -04:00
|
|
|
{
|
|
|
|
_COGL_GET_CONTEXT (ctx, NO_RETVAL);
|
|
|
|
|
|
|
|
cogl_enable (ctx->color_alpha < 255
|
|
|
|
? COGL_ENABLE_BLEND : 0);
|
|
|
|
|
2009-01-20 11:20:54 -05:00
|
|
|
GE( glRectf ( (x),
|
|
|
|
(y),
|
|
|
|
(x + width),
|
|
|
|
(y + height)) );
|
2008-04-25 09:37:36 -04:00
|
|
|
}
|
|
|
|
|
2008-04-30 11:05:17 -04:00
|
|
|
void
|
2008-12-04 08:45:09 -05:00
|
|
|
_cogl_path_add_node (gboolean new_sub_path,
|
2009-01-20 11:20:54 -05:00
|
|
|
float x,
|
|
|
|
float y)
|
2008-04-25 09:37:36 -04:00
|
|
|
{
|
2008-12-04 08:45:09 -05:00
|
|
|
CoglPathNode new_node;
|
2008-04-25 09:37:36 -04:00
|
|
|
|
2008-06-23 07:01:30 -04:00
|
|
|
_COGL_GET_CONTEXT (ctx, NO_RETVAL);
|
2008-04-25 09:37:36 -04:00
|
|
|
|
2009-01-20 11:20:54 -05:00
|
|
|
new_node.x = (x);
|
|
|
|
new_node.y = (y);
|
2008-12-04 08:45:09 -05:00
|
|
|
new_node.path_size = 0;
|
|
|
|
|
|
|
|
if (new_sub_path || ctx->path_nodes->len == 0)
|
|
|
|
ctx->last_path = ctx->path_nodes->len;
|
|
|
|
|
|
|
|
g_array_append_val (ctx->path_nodes, new_node);
|
|
|
|
|
|
|
|
g_array_index (ctx->path_nodes, CoglPathNode, ctx->last_path).path_size++;
|
|
|
|
|
|
|
|
if (ctx->path_nodes->len == 1)
|
2008-04-25 09:37:36 -04:00
|
|
|
{
|
|
|
|
ctx->path_nodes_min.x = ctx->path_nodes_max.x = x;
|
|
|
|
ctx->path_nodes_min.y = ctx->path_nodes_max.y = y;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (x < ctx->path_nodes_min.x) ctx->path_nodes_min.x = x;
|
|
|
|
if (x > ctx->path_nodes_max.x) ctx->path_nodes_max.x = x;
|
|
|
|
if (y < ctx->path_nodes_min.y) ctx->path_nodes_min.y = y;
|
|
|
|
if (y > ctx->path_nodes_max.y) ctx->path_nodes_max.y = y;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-30 11:05:17 -04:00
|
|
|
void
|
2008-04-25 09:37:36 -04:00
|
|
|
_cogl_path_stroke_nodes ()
|
|
|
|
{
|
2008-12-04 08:45:09 -05:00
|
|
|
guint path_start = 0;
|
|
|
|
|
2008-04-25 09:37:36 -04:00
|
|
|
_COGL_GET_CONTEXT (ctx, NO_RETVAL);
|
|
|
|
|
|
|
|
cogl_enable (COGL_ENABLE_VERTEX_ARRAY
|
|
|
|
| (ctx->color_alpha < 255
|
|
|
|
? COGL_ENABLE_BLEND : 0));
|
2008-12-04 08:45:09 -05:00
|
|
|
|
|
|
|
while (path_start < ctx->path_nodes->len)
|
|
|
|
{
|
|
|
|
CoglPathNode *path = &g_array_index (ctx->path_nodes, CoglPathNode,
|
|
|
|
path_start);
|
|
|
|
|
|
|
|
GE( glVertexPointer (2, GL_FLOAT, sizeof (CoglPathNode),
|
|
|
|
(guchar *) path
|
|
|
|
+ G_STRUCT_OFFSET (CoglPathNode, x)) );
|
|
|
|
GE( glDrawArrays (GL_LINE_STRIP, 0, path->path_size) );
|
|
|
|
|
|
|
|
path_start += path->path_size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-01-20 11:20:54 -05:00
|
|
|
_cogl_path_get_bounds (floatVec2 nodes_min,
|
|
|
|
floatVec2 nodes_max,
|
2008-12-04 08:45:09 -05:00
|
|
|
gint *bounds_x,
|
|
|
|
gint *bounds_y,
|
|
|
|
guint *bounds_w,
|
|
|
|
guint *bounds_h)
|
|
|
|
{
|
2009-01-20 11:20:54 -05:00
|
|
|
*bounds_x = floorf (nodes_min.x);
|
|
|
|
*bounds_y = floorf (nodes_min.y);
|
|
|
|
*bounds_w = ceilf (nodes_max.x
|
|
|
|
- (float)(*bounds_x));
|
|
|
|
*bounds_h = ceilf (nodes_max.y
|
|
|
|
- (float)(*bounds_y));
|
2008-04-25 09:37:36 -04:00
|
|
|
}
|
|
|
|
|
2008-05-05 08:01:19 -04:00
|
|
|
void
|
2009-01-20 11:20:54 -05:00
|
|
|
_cogl_add_path_to_stencil_buffer (floatVec2 nodes_min,
|
|
|
|
floatVec2 nodes_max,
|
2008-12-04 08:45:09 -05:00
|
|
|
guint path_size,
|
|
|
|
CoglPathNode *path,
|
|
|
|
gboolean merge)
|
2008-04-25 09:37:36 -04:00
|
|
|
{
|
2008-12-04 08:45:09 -05:00
|
|
|
guint path_start = 0;
|
|
|
|
guint sub_path_num = 0;
|
|
|
|
gint bounds_x;
|
|
|
|
gint bounds_y;
|
2008-04-25 09:37:36 -04:00
|
|
|
guint bounds_w;
|
|
|
|
guint bounds_h;
|
2008-12-04 08:45:09 -05:00
|
|
|
|
|
|
|
_cogl_path_get_bounds (nodes_min, nodes_max,
|
|
|
|
&bounds_x, &bounds_y, &bounds_w, &bounds_h);
|
|
|
|
|
|
|
|
if (merge)
|
|
|
|
{
|
|
|
|
GE( glStencilMask (2) );
|
|
|
|
GE( glStencilFunc (GL_LEQUAL, 0x2, 0x6) );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GE( glClear (GL_STENCIL_BUFFER_BIT) );
|
|
|
|
GE( glStencilMask (1) );
|
|
|
|
GE( glStencilFunc (GL_LEQUAL, 0x1, 0x3) );
|
|
|
|
}
|
2008-04-25 09:37:36 -04:00
|
|
|
|
|
|
|
GE( glEnable (GL_STENCIL_TEST) );
|
|
|
|
GE( glStencilOp (GL_INVERT, GL_INVERT, GL_INVERT) );
|
2008-06-23 10:57:36 -04:00
|
|
|
|
2008-12-04 08:45:09 -05:00
|
|
|
GE( glColorMask (FALSE, FALSE, FALSE, FALSE) );
|
|
|
|
GE( glDepthMask (FALSE) );
|
2008-04-25 09:37:36 -04:00
|
|
|
|
2008-12-04 08:45:09 -05:00
|
|
|
while (path_start < path_size)
|
|
|
|
{
|
|
|
|
cogl_enable (COGL_ENABLE_VERTEX_ARRAY);
|
|
|
|
|
|
|
|
GE( glVertexPointer (2, GL_FLOAT, sizeof (CoglPathNode),
|
|
|
|
(guchar *) path
|
|
|
|
+ G_STRUCT_OFFSET (CoglPathNode, x)) );
|
|
|
|
GE( glDrawArrays (GL_TRIANGLE_FAN, 0, path->path_size) );
|
|
|
|
|
|
|
|
if (sub_path_num > 0)
|
|
|
|
{
|
|
|
|
/* Union the two stencil buffers bits into the least
|
|
|
|
significant bit */
|
|
|
|
GE( glStencilMask (merge ? 6 : 3) );
|
|
|
|
GE( glStencilOp (GL_ZERO, GL_REPLACE, GL_REPLACE) );
|
|
|
|
cogl_rectangle (bounds_x, bounds_y, bounds_w, bounds_h);
|
|
|
|
|
|
|
|
GE( glStencilOp (GL_INVERT, GL_INVERT, GL_INVERT) );
|
|
|
|
}
|
|
|
|
|
|
|
|
GE( glStencilMask (merge ? 4 : 2) );
|
|
|
|
|
|
|
|
path_start += path->path_size;
|
|
|
|
path += path->path_size;
|
|
|
|
sub_path_num++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (merge)
|
|
|
|
{
|
|
|
|
/* Now we have the new stencil buffer in bit 1 and the old
|
|
|
|
stencil buffer in bit 0 so we need to intersect them */
|
|
|
|
GE( glStencilMask (3) );
|
|
|
|
GE( glStencilFunc (GL_NEVER, 0x2, 0x3) );
|
|
|
|
GE( glStencilOp (GL_DECR, GL_DECR, GL_DECR) );
|
|
|
|
/* Decrement all of the bits twice so that only pixels where the
|
|
|
|
value is 3 will remain */
|
|
|
|
GE( glPushMatrix () );
|
|
|
|
GE( glLoadIdentity () );
|
|
|
|
GE( glMatrixMode (GL_PROJECTION) );
|
|
|
|
GE( glPushMatrix () );
|
|
|
|
GE( glLoadIdentity () );
|
|
|
|
GE( glRecti (-1, 1, 1, -1) );
|
|
|
|
GE( glRecti (-1, 1, 1, -1) );
|
|
|
|
GE( glPopMatrix () );
|
|
|
|
GE( glMatrixMode (GL_MODELVIEW) );
|
|
|
|
GE( glPopMatrix () );
|
|
|
|
}
|
2008-04-25 09:37:36 -04:00
|
|
|
|
2008-06-23 10:57:36 -04:00
|
|
|
GE( glStencilMask (~(GLuint) 0) );
|
2008-12-04 08:45:09 -05:00
|
|
|
GE( glDepthMask (TRUE) );
|
|
|
|
GE( glColorMask (TRUE, TRUE, TRUE, TRUE) );
|
2008-04-25 09:37:36 -04:00
|
|
|
|
2008-06-23 10:57:36 -04:00
|
|
|
GE( glStencilFunc (GL_EQUAL, 0x1, 0x1) );
|
|
|
|
GE( glStencilOp (GL_KEEP, GL_KEEP, GL_KEEP) );
|
2008-12-04 08:45:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_path_fill_nodes ()
|
|
|
|
{
|
|
|
|
gint bounds_x;
|
|
|
|
gint bounds_y;
|
|
|
|
guint bounds_w;
|
|
|
|
guint bounds_h;
|
|
|
|
|
|
|
|
_COGL_GET_CONTEXT (ctx, NO_RETVAL);
|
|
|
|
|
|
|
|
_cogl_add_path_to_stencil_buffer (ctx->path_nodes_min,
|
|
|
|
ctx->path_nodes_max,
|
|
|
|
ctx->path_nodes->len,
|
|
|
|
&g_array_index (ctx->path_nodes,
|
|
|
|
CoglPathNode, 0),
|
|
|
|
ctx->clip.stencil_used);
|
|
|
|
|
|
|
|
_cogl_path_get_bounds (ctx->path_nodes_min, ctx->path_nodes_max,
|
|
|
|
&bounds_x, &bounds_y, &bounds_w, &bounds_h);
|
2008-06-23 10:57:36 -04:00
|
|
|
|
2008-04-29 11:41:34 -04:00
|
|
|
cogl_rectangle (bounds_x, bounds_y, bounds_w, bounds_h);
|
2008-12-04 08:45:09 -05:00
|
|
|
|
|
|
|
/* The stencil buffer now contains garbage so the clip area needs to
|
|
|
|
be rebuilt */
|
|
|
|
ctx->clip.stack_dirty = TRUE;
|
2008-04-25 09:37:36 -04:00
|
|
|
}
|