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

« back to all changes in this revision

Viewing changes to clutter/clutter-desaturate-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:
40
40
/**
41
41
 * ClutterDesaturateEffect:
42
42
 *
43
 
 * <structname>ClutterDesaturateEffect</structname> is an opaque structure
 
43
 * #ClutterDesaturateEffect is an opaque structure
44
44
 * whose members cannot be directly accessed
45
45
 *
46
46
 * Since: 1.4
48
48
typedef struct _ClutterDesaturateEffect         ClutterDesaturateEffect;
49
49
typedef struct _ClutterDesaturateEffectClass    ClutterDesaturateEffectClass;
50
50
 
 
51
CLUTTER_AVAILABLE_IN_1_4
51
52
GType clutter_desaturate_effect_get_type (void) G_GNUC_CONST;
52
53
 
 
54
CLUTTER_AVAILABLE_IN_1_4
53
55
ClutterEffect *clutter_desaturate_effect_new        (gdouble                  factor);
54
56
 
 
57
CLUTTER_AVAILABLE_IN_1_4
55
58
void           clutter_desaturate_effect_set_factor (ClutterDesaturateEffect *effect,
56
59
                                                     gdouble                  factor);
 
60
CLUTTER_AVAILABLE_IN_1_4
57
61
gdouble        clutter_desaturate_effect_get_factor (ClutterDesaturateEffect *effect);
58
62
 
59
63
G_END_DECLS