~noskcaj/ubuntu/trusty/cogl/1.16.2

« back to all changes in this revision

Viewing changes to cogl/cogl-swap-chain.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:
28
28
#ifndef __COGL_SWAP_CHAIN_H__
29
29
#define __COGL_SWAP_CHAIN_H__
30
30
 
31
 
G_BEGIN_DECLS
 
31
COGL_BEGIN_DECLS
32
32
 
33
33
typedef struct _CoglSwapChain CoglSwapChain;
34
34
 
35
 
#define cogl_swap_chain_new cogl_swap_chain_new_EXP
36
35
CoglSwapChain *
37
36
cogl_swap_chain_new (void);
38
37
 
39
 
#define cogl_swap_chain_set_has_alpha cogl_swap_chain_set_has_alpha_EXP
40
38
void
41
39
cogl_swap_chain_set_has_alpha (CoglSwapChain *swap_chain,
42
40
                               CoglBool has_alpha);
43
41
 
44
 
#define cogl_swap_chain_set_length cogl_swap_chain_set_length_EXP
45
42
void
46
43
cogl_swap_chain_set_length (CoglSwapChain *swap_chain,
47
44
                            int length);
49
46
CoglBool
50
47
cogl_is_swap_chain (void *object);
51
48
 
52
 
G_END_DECLS
 
49
COGL_END_DECLS
53
50
 
54
51
#endif /* __COGL_SWAP_CHAIN_H__ */