~ubuntu-branches/ubuntu/vivid/clutter-1.0/vivid-proposed

« back to all changes in this revision

Viewing changes to clutter/wayland/clutter-wayland-surface.h

  • Committer: Package Import Robot
  • Author(s): Emilio Pozuelo Monfort
  • Date: 2014-03-26 11:51:28 UTC
  • mfrom: (1.5.1) (4.1.30 experimental)
  • Revision ID: package-import@ubuntu.com-20140326115128-timmbsde8734o6wz
Tags: 1.18.0-1
* New upstream release.
* debian/control.in:
  + Bump gtk-doc-tools build dependency.
  + Also break libcogl15.
  + Standards-Version is 3.9.5, no changes needed.
* debian/libclutter-1.0-0.symbols:
  + Drop a few symbols that were accidentally exported in the DSO because
    they had a clutter_ prefix but were not in the public headers.
  + Add one new symbol.
  + Drop unnecessary debian revisions from some symbols.
* debian/control.in,
  debian/rules,
  debian/libclutter-1.0-0.symbols:
  + Temporarily disable evdev input support. It was only enabled in 1.17.6-1
    in experimental and there is nothing using it yet, and I would like to
    wait a bit before uploading libinput to unstable as the ABI isn't stable
    yet.
* d/p/0001-wayland-Add-missing-CLUTTER_AVAILABLE-annotations.patch:
  + Add missing annotations so that a few symbols are exported in the DSO.

* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
88
88
  gpointer _padding_dummy[8];
89
89
};
90
90
 
 
91
CLUTTER_AVAILABLE_IN_1_10
91
92
GType clutter_wayland_surface_get_type (void) G_GNUC_CONST;
92
93
 
 
94
CLUTTER_AVAILABLE_IN_1_8
93
95
ClutterActor *clutter_wayland_surface_new               (struct wl_surface *surface);
 
96
CLUTTER_AVAILABLE_IN_1_10
94
97
void          clutter_wayland_surface_set_surface       (ClutterWaylandSurface *self,
95
98
                                                         struct wl_surface *surface);
 
99
CLUTTER_AVAILABLE_IN_1_10
96
100
struct wl_surface *clutter_wayland_surface_get_surface  (ClutterWaylandSurface *self);
 
101
CLUTTER_AVAILABLE_IN_1_8
97
102
gboolean      clutter_wayland_surface_attach_buffer     (ClutterWaylandSurface *self,
98
 
                                                         struct wl_buffer *buffer,
 
103
                                                         struct wl_resource *buffer,
99
104
                                                         GError **error);
 
105
CLUTTER_AVAILABLE_IN_1_8
100
106
void          clutter_wayland_surface_damage_buffer     (ClutterWaylandSurface *self,
101
 
                                                         struct wl_buffer *buffer,
 
107
                                                         struct wl_resource *buffer,
102
108
                                                         gint32 x,
103
109
                                                         gint32 y,
104
110
                                                         gint32 width,
105
111
                                                         gint32 height);
 
112
CLUTTER_AVAILABLE_IN_1_10
106
113
CoglTexture  *clutter_wayland_surface_get_cogl_texture  (ClutterWaylandSurface *self);
107
114
 
108
115
G_END_DECLS