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/>.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __COGL_CLIP_STATE_H
|
|
|
|
#define __COGL_CLIP_STATE_H
|
|
|
|
|
2010-11-16 03:38:59 -05:00
|
|
|
#include "cogl-clip-stack.h"
|
|
|
|
|
2010-04-14 14:41:08 -04:00
|
|
|
typedef struct _CoglClipState CoglClipState;
|
|
|
|
|
|
|
|
struct _CoglClipState
|
|
|
|
{
|
|
|
|
/* Stack of CoglClipStacks */
|
|
|
|
GSList *stacks;
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_clip_state_init (CoglClipState *state);
|
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_clip_state_destroy (CoglClipState *state);
|
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_clip_state_flush (CoglClipState *clip_state);
|
|
|
|
|
2010-04-15 05:58:28 -04:00
|
|
|
/*
|
|
|
|
* _cogl_get_clip_stack:
|
|
|
|
*
|
2010-11-01 15:52:45 -04:00
|
|
|
* Gets a pointer to the current clip stack. This can be used to later
|
2010-04-15 05:58:28 -04:00
|
|
|
* return to the same clip stack state with _cogl_set_clip_stack(). A
|
|
|
|
* reference is not taken on the stack so if you want to keep it you
|
2010-11-01 15:52:45 -04:00
|
|
|
* should call _cogl_clip_stack_ref().
|
2010-04-15 05:58:28 -04:00
|
|
|
*
|
2010-11-01 15:52:45 -04:00
|
|
|
* Return value: a pointer to the current clip stack.
|
2010-04-15 05:58:28 -04:00
|
|
|
*/
|
2010-11-01 15:52:45 -04:00
|
|
|
CoglClipStack *
|
2010-04-15 05:58:28 -04:00
|
|
|
_cogl_get_clip_stack (void);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* _cogl_set_clip_stack:
|
2010-11-01 15:52:45 -04:00
|
|
|
* @stack: a pointer to the replacement clip stack
|
2010-04-15 05:58:28 -04:00
|
|
|
*
|
2010-11-01 15:52:45 -04:00
|
|
|
* Replaces the current clip stack with @stack.
|
2010-04-15 05:58:28 -04:00
|
|
|
*/
|
|
|
|
void
|
2010-11-01 15:52:45 -04:00
|
|
|
_cogl_set_clip_stack (CoglClipStack *stack);
|
2010-04-15 05:58:28 -04:00
|
|
|
|
2010-04-14 14:41:08 -04:00
|
|
|
#endif /* __COGL_CLIP_STATE_H */
|