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

« back to all changes in this revision

Viewing changes to clutter/cogl/cogl/cogl-journal-private.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_JOURNAL_PRIVATE_H
 
25
#define __COGL_JOURNAL_PRIVATE_H
 
26
 
 
27
#include "cogl-handle.h"
 
28
 
 
29
/* To improve batching of geometry when submitting vertices to OpenGL we
 
30
 * log the texture rectangles we want to draw to a journal, so when we
 
31
 * later flush the journal we aim to batch data, and gl draw calls. */
 
32
typedef struct _CoglJournalEntry
 
33
{
 
34
  CoglHandle               material;
 
35
  int                      n_layers;
 
36
  CoglMaterialFlushOptions flush_options;
 
37
  CoglMatrix               model_view;
 
38
  /* XXX: These entries are pretty big now considering the padding in
 
39
   * CoglMaterialFlushOptions and CoglMatrix, so we might need to optimize this
 
40
   * later. */
 
41
} CoglJournalEntry;
 
42
 
 
43
void
 
44
_cogl_journal_log_quad (const float  *position,
 
45
                        CoglHandle    material,
 
46
                        int           n_layers,
 
47
                        guint32       fallback_layers,
 
48
                        GLuint        layer0_override_texture,
 
49
                        const float  *tex_coords,
 
50
                        unsigned int  tex_coords_len);
 
51
 
 
52
void
 
53
_cogl_journal_flush (void);
 
54
 
 
55
#endif /* __COGL_JOURNAL_PRIVATE_H */