2010-04-14 14:41:08 -04:00
|
|
|
/*
|
|
|
|
* Cogl
|
|
|
|
*
|
|
|
|
* An object oriented GL/GLES Abstraction/Utility Layer
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007,2008,2009,2010 Intel Corporation.
|
|
|
|
*
|
|
|
|
* 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include "cogl.h"
|
|
|
|
#include "cogl-clip-stack.h"
|
|
|
|
#include "cogl-clip-state.h"
|
|
|
|
#include "cogl-context.h"
|
|
|
|
#include "cogl-internal.h"
|
|
|
|
#include "cogl-framebuffer-private.h"
|
|
|
|
#include "cogl-journal-private.h"
|
|
|
|
#include "cogl-util.h"
|
2010-04-22 08:48:49 -04:00
|
|
|
#include "cogl-matrix-private.h"
|
2010-04-14 14:41:08 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
cogl_clip_push_window_rectangle (int x_offset,
|
|
|
|
int y_offset,
|
|
|
|
int width,
|
|
|
|
int height)
|
|
|
|
{
|
2010-07-07 09:41:54 -04:00
|
|
|
CoglFramebuffer *framebuffer;
|
2010-04-14 14:41:08 -04:00
|
|
|
CoglClipState *clip_state;
|
|
|
|
|
|
|
|
_COGL_GET_CONTEXT (ctx, NO_RETVAL);
|
|
|
|
|
2011-02-02 09:23:53 -05:00
|
|
|
framebuffer = _cogl_get_draw_buffer ();
|
2010-04-14 14:41:08 -04:00
|
|
|
clip_state = _cogl_framebuffer_get_clip_state (framebuffer);
|
|
|
|
|
2010-11-01 15:52:45 -04:00
|
|
|
clip_state->stacks->data =
|
|
|
|
_cogl_clip_stack_push_window_rectangle (clip_state->stacks->data,
|
|
|
|
x_offset, y_offset,
|
|
|
|
width, height);
|
2010-04-14 14:41:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* XXX: This is deprecated API */
|
|
|
|
void
|
|
|
|
cogl_clip_push_window_rect (float x_offset,
|
|
|
|
float y_offset,
|
|
|
|
float width,
|
|
|
|
float height)
|
|
|
|
{
|
|
|
|
cogl_clip_push_window_rectangle (x_offset, y_offset, width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cogl_clip_push_rectangle (float x_1,
|
|
|
|
float y_1,
|
|
|
|
float x_2,
|
|
|
|
float y_2)
|
|
|
|
{
|
2010-07-07 09:41:54 -04:00
|
|
|
CoglFramebuffer *framebuffer;
|
2010-04-14 14:41:08 -04:00
|
|
|
CoglClipState *clip_state;
|
|
|
|
CoglMatrix modelview_matrix;
|
|
|
|
|
|
|
|
_COGL_GET_CONTEXT (ctx, NO_RETVAL);
|
|
|
|
|
2011-02-02 09:23:53 -05:00
|
|
|
framebuffer = _cogl_get_draw_buffer ();
|
2010-04-14 14:41:08 -04:00
|
|
|
clip_state = _cogl_framebuffer_get_clip_state (framebuffer);
|
|
|
|
|
|
|
|
cogl_get_modelview_matrix (&modelview_matrix);
|
|
|
|
|
2010-11-01 15:52:45 -04:00
|
|
|
clip_state->stacks->data =
|
|
|
|
_cogl_clip_stack_push_rectangle (clip_state->stacks->data,
|
|
|
|
x_1, y_1, x_2, y_2,
|
|
|
|
&modelview_matrix);
|
2010-04-14 14:41:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* XXX: Deprecated API */
|
|
|
|
void
|
|
|
|
cogl_clip_push (float x_offset,
|
|
|
|
float y_offset,
|
|
|
|
float width,
|
|
|
|
float height)
|
|
|
|
{
|
|
|
|
cogl_clip_push_rectangle (x_offset,
|
|
|
|
y_offset,
|
|
|
|
x_offset + width,
|
|
|
|
y_offset + height);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cogl_clip_push_from_path_preserve (void)
|
|
|
|
{
|
2010-07-07 09:41:54 -04:00
|
|
|
CoglFramebuffer *framebuffer;
|
2010-04-14 14:41:08 -04:00
|
|
|
CoglClipState *clip_state;
|
|
|
|
CoglMatrix modelview_matrix;
|
|
|
|
|
|
|
|
_COGL_GET_CONTEXT (ctx, NO_RETVAL);
|
|
|
|
|
2011-02-02 09:23:53 -05:00
|
|
|
framebuffer = _cogl_get_draw_buffer ();
|
2010-04-14 14:41:08 -04:00
|
|
|
clip_state = _cogl_framebuffer_get_clip_state (framebuffer);
|
|
|
|
|
|
|
|
cogl_get_modelview_matrix (&modelview_matrix);
|
|
|
|
|
2010-11-01 15:52:45 -04:00
|
|
|
clip_state->stacks->data =
|
2010-11-03 20:27:47 -04:00
|
|
|
_cogl_clip_stack_push_from_path (clip_state->stacks->data,
|
|
|
|
ctx->current_path,
|
2010-11-01 15:52:45 -04:00
|
|
|
&modelview_matrix);
|
2010-04-14 14:41:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cogl_clip_push_from_path (void)
|
|
|
|
{
|
2010-11-03 20:27:47 -04:00
|
|
|
_COGL_GET_CONTEXT (ctx, NO_RETVAL);
|
|
|
|
|
2010-04-14 14:41:08 -04:00
|
|
|
cogl_clip_push_from_path_preserve ();
|
|
|
|
|
2010-11-03 20:27:47 -04:00
|
|
|
cogl_object_unref (ctx->current_path);
|
|
|
|
ctx->current_path = cogl2_path_new ();
|
2010-04-14 14:41:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_cogl_clip_pop_real (CoglClipState *clip_state)
|
|
|
|
{
|
2010-11-01 15:52:45 -04:00
|
|
|
clip_state->stacks->data = _cogl_clip_stack_pop (clip_state->stacks->data);
|
2010-04-14 14:41:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cogl_clip_pop (void)
|
|
|
|
{
|
2010-07-07 09:41:54 -04:00
|
|
|
CoglFramebuffer *framebuffer;
|
2010-04-14 14:41:08 -04:00
|
|
|
CoglClipState *clip_state;
|
|
|
|
|
|
|
|
_COGL_GET_CONTEXT (ctx, NO_RETVAL);
|
|
|
|
|
2011-02-02 09:23:53 -05:00
|
|
|
framebuffer = _cogl_get_draw_buffer ();
|
2010-04-14 14:41:08 -04:00
|
|
|
clip_state = _cogl_framebuffer_get_clip_state (framebuffer);
|
|
|
|
|
|
|
|
_cogl_clip_pop_real (clip_state);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_clip_state_flush (CoglClipState *clip_state)
|
|
|
|
{
|
2010-11-02 10:28:12 -04:00
|
|
|
/* Flush the topmost stack. The clip stack code will bail out early
|
|
|
|
if this is already flushed */
|
|
|
|
_cogl_clip_stack_flush (clip_state->stacks->data);
|
2010-04-14 14:41:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* XXX: This should never have been made public API! */
|
|
|
|
void
|
|
|
|
cogl_clip_ensure (void)
|
|
|
|
{
|
2011-02-02 09:23:53 -05:00
|
|
|
CoglFramebuffer *framebuffer = _cogl_get_draw_buffer ();
|
2010-04-14 14:41:08 -04:00
|
|
|
CoglClipState *clip_state;
|
|
|
|
|
2011-01-06 08:25:45 -05:00
|
|
|
clip_state = _cogl_framebuffer_get_clip_state (framebuffer);
|
2010-11-02 13:15:06 -04:00
|
|
|
/* Flushing the clip state doesn't cause the journal to be
|
|
|
|
flushed. This function may be being called by an external
|
|
|
|
application however so it makes sense to flush the journal
|
|
|
|
here */
|
2011-01-06 08:25:45 -05:00
|
|
|
_cogl_framebuffer_flush_journal (framebuffer);
|
2010-04-14 14:41:08 -04:00
|
|
|
_cogl_clip_state_flush (clip_state);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_cogl_clip_stack_save_real (CoglClipState *clip_state)
|
|
|
|
{
|
2010-11-01 15:52:45 -04:00
|
|
|
clip_state->stacks = g_slist_prepend (clip_state->stacks, NULL);
|
2010-04-14 14:41:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cogl_clip_stack_save (void)
|
|
|
|
{
|
2010-07-07 09:41:54 -04:00
|
|
|
CoglFramebuffer *framebuffer;
|
2010-04-14 14:41:08 -04:00
|
|
|
CoglClipState *clip_state;
|
|
|
|
|
|
|
|
_COGL_GET_CONTEXT (ctx, NO_RETVAL);
|
|
|
|
|
2011-02-02 09:23:53 -05:00
|
|
|
framebuffer = _cogl_get_draw_buffer ();
|
2010-04-14 14:41:08 -04:00
|
|
|
clip_state = _cogl_framebuffer_get_clip_state (framebuffer);
|
|
|
|
|
|
|
|
_cogl_clip_stack_save_real (clip_state);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_cogl_clip_stack_restore_real (CoglClipState *clip_state)
|
|
|
|
{
|
2010-04-15 05:27:43 -04:00
|
|
|
CoglHandle stack;
|
2010-04-14 14:41:08 -04:00
|
|
|
|
|
|
|
g_return_if_fail (clip_state->stacks != NULL);
|
|
|
|
|
|
|
|
stack = clip_state->stacks->data;
|
|
|
|
|
2010-11-01 15:52:45 -04:00
|
|
|
_cogl_clip_stack_unref (stack);
|
2010-04-14 14:41:08 -04:00
|
|
|
|
|
|
|
/* Revert to an old stack */
|
|
|
|
clip_state->stacks = g_slist_delete_link (clip_state->stacks,
|
|
|
|
clip_state->stacks);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cogl_clip_stack_restore (void)
|
|
|
|
{
|
2010-07-07 09:41:54 -04:00
|
|
|
CoglFramebuffer *framebuffer;
|
2010-04-14 14:41:08 -04:00
|
|
|
CoglClipState *clip_state;
|
|
|
|
|
|
|
|
_COGL_GET_CONTEXT (ctx, NO_RETVAL);
|
|
|
|
|
2011-02-02 09:23:53 -05:00
|
|
|
framebuffer = _cogl_get_draw_buffer ();
|
2010-04-14 14:41:08 -04:00
|
|
|
clip_state = _cogl_framebuffer_get_clip_state (framebuffer);
|
|
|
|
|
|
|
|
_cogl_clip_stack_restore_real (clip_state);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_clip_state_init (CoglClipState *clip_state)
|
|
|
|
{
|
|
|
|
_COGL_GET_CONTEXT (ctx, NO_RETVAL);
|
|
|
|
|
|
|
|
clip_state->stacks = NULL;
|
|
|
|
|
|
|
|
/* Add an intial stack */
|
|
|
|
_cogl_clip_stack_save_real (clip_state);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_clip_state_destroy (CoglClipState *clip_state)
|
|
|
|
{
|
|
|
|
/* Destroy all of the stacks */
|
|
|
|
while (clip_state->stacks)
|
|
|
|
_cogl_clip_stack_restore_real (clip_state);
|
|
|
|
}
|
|
|
|
|
2010-11-01 15:52:45 -04:00
|
|
|
CoglClipStack *
|
2011-01-12 14:30:30 -05:00
|
|
|
_cogl_clip_state_get_stack (CoglClipState *clip_state)
|
2010-04-15 05:58:28 -04:00
|
|
|
{
|
|
|
|
return clip_state->stacks->data;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-01-12 14:30:30 -05:00
|
|
|
_cogl_clip_state_set_stack (CoglClipState *clip_state,
|
|
|
|
CoglClipStack *stack)
|
2010-04-15 05:58:28 -04:00
|
|
|
{
|
|
|
|
/* Replace the top of the stack of stacks */
|
2010-11-01 15:52:45 -04:00
|
|
|
_cogl_clip_stack_ref (stack);
|
|
|
|
_cogl_clip_stack_unref (clip_state->stacks->data);
|
|
|
|
clip_state->stacks->data = stack;
|
2010-04-15 05:58:28 -04:00
|
|
|
}
|