mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-18 09:00:34 +00:00
gdk: Undeprecate gdk_region_xor()
cairo_region_xor() does now exist, so there's no need to deprecate this function.
This commit is contained in:
parent
a41107b616
commit
e8915ae422
@ -1509,10 +1509,6 @@ gdk_region_subtract (GdkRegion *source1,
|
||||
* Sets the area of @source1 to the exclusive-OR of the areas of @source1
|
||||
* and @source2. The resulting area is the set of pixels contained in one
|
||||
* or the other of the two sources but not in both.
|
||||
*
|
||||
* Deprecated: 2.22: There is no replacement, but the function can be
|
||||
* reimplemented using gdk_region_intersect() and
|
||||
* gdk_region_subract() easily.
|
||||
**/
|
||||
void
|
||||
gdk_region_xor (GdkRegion *source1,
|
||||
|
@ -109,10 +109,10 @@ void gdk_region_union (GdkRegion *source1,
|
||||
const GdkRegion *source2);
|
||||
void gdk_region_subtract (GdkRegion *source1,
|
||||
const GdkRegion *source2);
|
||||
#ifndef GDK_DISABLE_DEPRECATED
|
||||
void gdk_region_xor (GdkRegion *source1,
|
||||
const GdkRegion *source2);
|
||||
|
||||
#ifndef GDK_DISABLE_DEPRECATED
|
||||
void gdk_region_spans_intersect_foreach (GdkRegion *region,
|
||||
const GdkSpan *spans,
|
||||
int n_spans,
|
||||
|
Loading…
Reference in New Issue
Block a user