~oem-solutions-group/unity-2d/clutter-1.0

« back to all changes in this revision

Viewing changes to clutter/cogl/cogl/cogl-spans.h

  • Committer: Bazaar Package Importer
  • Author(s): Emilio Pozuelo Monfort
  • Date: 2010-03-21 13:27:56 UTC
  • mto: (2.1.3 experimental)
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20100321132756-nf8yd30yxo3zzwcm
Tags: upstream-1.2.2
ImportĀ upstreamĀ versionĀ 1.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Cogl
 
3
 *
 
4
 * An object oriented GL/GLES Abstraction/Utility Layer
 
5
 *
 
6
 * Copyright (C) 2007,2008,2009 Intel Corporation.
 
7
 *
 
8
 * This library is free software; you can redistribute it and/or
 
9
 * modify it under the terms of the GNU Lesser General Public
 
10
 * License as published by the Free Software Foundation; either
 
11
 * version 2 of the License, or (at your option) any later version.
 
12
 *
 
13
 * This library is distributed in the hope that it will be useful,
 
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
16
 * Lesser General Public License for more details.
 
17
 *
 
18
 * You should have received a copy of the GNU Lesser General Public
 
19
 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
 
20
 *
 
21
 *
 
22
 */
 
23
 
 
24
#ifndef __COGL_SPANS_PRIVATE_H
 
25
#define __COGL_SPANS_PRIVATE_H
 
26
 
 
27
#include "cogl-handle.h"
 
28
 
 
29
typedef struct _CoglSpan
 
30
{
 
31
  int start;
 
32
  int size;
 
33
  int waste;
 
34
} CoglSpan;
 
35
 
 
36
typedef struct _CoglSpanIter
 
37
{
 
38
  int       index;
 
39
  GArray   *array;
 
40
  CoglSpan *span;
 
41
  float     pos;
 
42
  float     next_pos;
 
43
  float     origin;
 
44
  float     cover_start;
 
45
  float     cover_end;
 
46
  float     intersect_start;
 
47
  float     intersect_end;
 
48
  float     intersect_start_local;
 
49
  float     intersect_end_local;
 
50
  gboolean  intersects;
 
51
  gboolean  flipped;
 
52
} CoglSpanIter;
 
53
 
 
54
void
 
55
_cogl_span_iter_update (CoglSpanIter *iter);
 
56
 
 
57
void
 
58
_cogl_span_iter_begin (CoglSpanIter *iter,
 
59
                       GArray       *spans,
 
60
                       float         normalize_factor,
 
61
                       float         cover_start,
 
62
                       float         cover_end);
 
63
 
 
64
void
 
65
_cogl_span_iter_next (CoglSpanIter *iter);
 
66
 
 
67
gboolean
 
68
_cogl_span_iter_end (CoglSpanIter *iter);
 
69
 
 
70
#endif /* __COGL_SPANS_PRIVATE_H */