~noskcaj/ubuntu/trusty/cogl/1.16.2

« back to all changes in this revision

Viewing changes to cogl/cogl-indices.h

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha, Jeremy Bicha, Rico Tzschichholz
  • Date: 2013-02-26 16:43:25 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20130226164325-t4z9rylpa20v0p6q
Tags: 1.13.4-0ubuntu1
[ Jeremy Bicha ]
* New upstream release
  - soname bump
* debian/control.in:
  - Bump minimum glib to 2.32
  - Drop obsolete breaks/replaces
  - Bump libclutter-1.0-dev breaks for soname transition
* debian/libcogl-dev.install:
  - Add some missing files

[ Rico Tzschichholz ]
* debian/control.in:
  - Build-depend on libxrandr-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
 
39
39
#include <cogl/cogl-index-buffer.h>
40
40
 
41
 
G_BEGIN_DECLS
 
41
COGL_BEGIN_DECLS
42
42
 
43
43
/**
44
 
 * SECTION:cogl-index-range
45
 
 * @short_description: Fuctions for declaring a range of vertex indices
46
 
 *   stored in a #CoglIndexBuffer.
 
44
 * SECTION:cogl-indices
 
45
 * @short_description: Describe vertex indices stored in a #CoglIndexBuffer.
47
46
 *
48
47
 * Indices allow you to avoid duplicating vertices in your vertex data
49
48
 * by virtualizing your data and instead providing a sequence of index
50
49
 * values that tell the GPU which data should be used for each vertex.
51
50
 *
52
 
 * If the GPU is given a squence of indices it doesn't simply walk
 
51
 * If the GPU is given a sequence of indices it doesn't simply walk
53
52
 * through each vertex of your data in order it will instead walk
54
53
 * through the indices which can provide random access to the
55
54
 * underlying data.
140
139
CoglBool
141
140
cogl_is_indices (void *object);
142
141
 
143
 
G_END_DECLS
 
142
COGL_END_DECLS
144
143
 
145
144
#endif /* __COGL_INDICES_H__ */
146
145