summaryrefslogtreecommitdiff
path: root/cogl/cogl-clip-state.h
blob: dc5e80b7685dd557d3b8487d994e805f2413a32f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*
 * 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);

/* TODO: we may want to make these two functions public because they
 * can be used to implement a better API than cogl_clip_stack_save()
 * and cogl_clip_stack_restore().
 */
/*
 * _cogl_get_clip_stack:
 *
 * Gets a handle to the current clip stack. This can be used to later
 * 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
 * should call cogl_handle_ref() or _cogl_clip_stack_copy().
 *
 * Return value: a handle to the current clip stack.
 */
CoglHandle
_cogl_get_clip_stack (void);

/*
 * _cogl_set_clip_stack:
 * @handle: a handle to the replacement clip stack
 *
 * Replaces the current clip stack with @handle.
 *
 * Return value: a handle to the current clip stack.
 */
void
_cogl_set_clip_stack (CoglHandle handle);

#endif /* __COGL_CLIP_STATE_H */