~noskcaj/ubuntu/trusty/cogl/1.16.2

« back to all changes in this revision

Viewing changes to cogl/cogl-xlib.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:
24
24
#ifndef __COGL_XLIB_H__
25
25
#define __COGL_XLIB_H__
26
26
 
27
 
#include <glib.h>
28
 
 
29
27
#include <X11/Xlib.h>
30
28
 
31
29
#define __COGL_XLIB_H_INSIDE__
 
30
#define __COGL_H_INSIDE__
32
31
 
 
32
#include <cogl/cogl-types.h>
33
33
#include <cogl/cogl-clutter-xlib.h>
34
34
#include <cogl/cogl-xlib-renderer.h>
35
35
 
36
 
G_BEGIN_DECLS
 
36
COGL_BEGIN_DECLS
37
37
 
38
38
/*
39
39
 * cogl_xlib_get_display:
44
44
 *
45
45
 * Stability: Unstable
46
46
 */
47
 
#define cogl_xlib_get_display cogl_xlib_get_display_EXP
48
47
Display *
49
48
cogl_xlib_get_display (void);
50
49
 
57
56
 *
58
57
 * Stability: Unstable
59
58
 */
60
 
#define cogl_xlib_set_display cogl_xlib_set_display_EXP
61
59
void
62
60
cogl_xlib_set_display (Display *display);
63
61
 
78
76
 *
79
77
 * Stability: Unstable
80
78
 */
81
 
#define cogl_xlib_handle_event cogl_xlib_handle_event_EXP
82
79
CoglFilterReturn
83
80
cogl_xlib_handle_event (XEvent *xevent);
84
81