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

« back to all changes in this revision

Viewing changes to clutter/cogl/common/cogl-primitives.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, write to the
20
 
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21
 
 * Boston, MA 02111-1307, USA.
22
 
 */
23
 
 
24
 
#ifndef __COGL_PRIMITIVES_H
25
 
#define __COGL_PRIMITIVES_H
26
 
 
27
 
typedef struct _floatVec2    floatVec2;
28
 
typedef struct _CoglBezQuad      CoglBezQuad;
29
 
typedef struct _CoglBezCubic     CoglBezCubic;
30
 
typedef struct _CoglPathNode     CoglPathNode;
31
 
 
32
 
struct _floatVec2
33
 
{
34
 
  float x;
35
 
  float y;
36
 
};
37
 
 
38
 
struct _CoglPathNode
39
 
{
40
 
  GLfloat x;
41
 
  GLfloat y;
42
 
  guint   path_size;
43
 
};
44
 
 
45
 
struct _CoglBezQuad
46
 
{
47
 
  floatVec2 p1;
48
 
  floatVec2 p2;
49
 
  floatVec2 p3;
50
 
};
51
 
 
52
 
struct _CoglBezCubic
53
 
{
54
 
  floatVec2 p1;
55
 
  floatVec2 p2;
56
 
  floatVec2 p3;
57
 
  floatVec2 p4;
58
 
};
59
 
 
60
 
void _cogl_journal_flush (void);
61
 
 
62
 
#endif /* __COGL_PRIMITIVES_H */