mirror of
https://github.com/brl/mutter.git
synced 2024-11-12 17:27:03 -05:00
f6f375cb36
CoglClipStackState has now been renamed to CoglClipState and is moved to a separate file. CoglClipStack now just maintains a stack and doesn't worry about the rest of the state. CoglClipStack sill contains the code to flush the stack to GL.
51 lines
1.3 KiB
C
51 lines
1.3 KiB
C
/*
|
|
* 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
|
|
|
|
typedef struct _CoglClipState CoglClipState;
|
|
|
|
struct _CoglClipState
|
|
{
|
|
/* Stack of CoglClipStacks */
|
|
GSList *stacks;
|
|
|
|
gboolean stack_dirty;
|
|
gboolean stencil_used;
|
|
};
|
|
|
|
void
|
|
_cogl_clip_state_init (CoglClipState *state);
|
|
|
|
void
|
|
_cogl_clip_state_destroy (CoglClipState *state);
|
|
|
|
void
|
|
_cogl_clip_state_dirty (CoglClipState *state);
|
|
|
|
void
|
|
_cogl_clip_state_flush (CoglClipState *clip_state);
|
|
|
|
#endif /* __COGL_CLIP_STATE_H */
|