~noskcaj/ubuntu/trusty/cogl/1.16.2

« back to all changes in this revision

Viewing changes to cogl/cogl1-context.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:
31
31
#ifndef __COGL_1_CONTEXT_H__
32
32
#define __COGL_1_CONTEXT_H__
33
33
 
34
 
#include <glib.h>
35
 
 
36
34
#include <cogl/cogl-types.h>
37
35
#include <cogl/cogl-texture.h>
38
36
#include <cogl/cogl-framebuffer.h>
39
37
 
40
 
G_BEGIN_DECLS
 
38
COGL_BEGIN_DECLS
41
39
 
42
40
/**
43
41
 * cogl_get_option_group:
1005
1003
 * Deprecated: 1.2: The draw buffer API was replaced with a framebuffer API
1006
1004
 */
1007
1005
void
1008
 
cogl_push_draw_buffer (void) G_GNUC_DEPRECATED;
 
1006
cogl_push_draw_buffer (void) COGL_GNUC_DEPRECATED;
1009
1007
 
1010
1008
/**
1011
1009
 * cogl_pop_draw_buffer:
1015
1013
 * Deprecated: 1.2: The draw buffer API was replaced with a framebuffer API
1016
1014
 */
1017
1015
void
1018
 
cogl_pop_draw_buffer (void) G_GNUC_DEPRECATED;
 
1016
cogl_pop_draw_buffer (void) COGL_GNUC_DEPRECATED;
1019
1017
 
1020
1018
#endif /* COGL_DISABLE_DEPRECATED */
1021
1019
 
1166
1164
void
1167
1165
cogl_end_gl (void);
1168
1166
 
1169
 
G_END_DECLS
 
1167
COGL_END_DECLS
1170
1168
 
1171
1169
#endif /* __COGL_1_CONTEXT_H__ */