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

« back to all changes in this revision

Viewing changes to clutter/clutter-effect.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:
91
91
  void (* _clutter_effect6) (void);
92
92
};
93
93
 
 
94
CLUTTER_AVAILABLE_IN_1_4
94
95
GType clutter_effect_get_type (void) G_GNUC_CONST;
95
96
 
 
97
CLUTTER_AVAILABLE_IN_1_8
96
98
void    clutter_effect_queue_repaint    (ClutterEffect *effect);
97
99
 
98
100
/*
99
101
 * ClutterActor API
100
102
 */
101
103
 
 
104
CLUTTER_AVAILABLE_IN_1_4
102
105
void           clutter_actor_add_effect            (ClutterActor  *self,
103
106
                                                    ClutterEffect *effect);
 
107
CLUTTER_AVAILABLE_IN_1_4
104
108
void           clutter_actor_add_effect_with_name  (ClutterActor  *self,
105
109
                                                    const gchar   *name,
106
110
                                                    ClutterEffect *effect);
 
111
CLUTTER_AVAILABLE_IN_1_4
107
112
void           clutter_actor_remove_effect         (ClutterActor  *self,
108
113
                                                    ClutterEffect *effect);
 
114
CLUTTER_AVAILABLE_IN_1_4
109
115
void           clutter_actor_remove_effect_by_name (ClutterActor  *self,
110
116
                                                    const gchar   *name);
 
117
CLUTTER_AVAILABLE_IN_1_4
111
118
GList *        clutter_actor_get_effects           (ClutterActor  *self);
 
119
CLUTTER_AVAILABLE_IN_1_4
112
120
ClutterEffect *clutter_actor_get_effect            (ClutterActor  *self,
113
121
                                                    const gchar   *name);
 
122
CLUTTER_AVAILABLE_IN_1_4
114
123
void           clutter_actor_clear_effects         (ClutterActor  *self);
115
124
 
116
 
gboolean        clutter_actor_has_effects           (ClutterActor *self);
 
125
CLUTTER_AVAILABLE_IN_1_10
 
126
gboolean       clutter_actor_has_effects           (ClutterActor  *self);
117
127
 
118
128
G_END_DECLS
119
129