Region.this - multiple declarations

Function Region.this

Prototype

ref this(
  Region region
);

Function Region.this

Prototypes

ref this(
  Rectangle!(int) rect
);

ref this(
  Rectangle!(int)[] rects
);

Function Region.this

Create a Region from a existing cairo_region_t*. Context is a garbage collected class. It will call cairo_region_destroy when it gets collected by the GC or when dispose() is called.

Prototype

ref this(
  cairo_region_t* ptr
);

Warning

ptr's reference count is not increased by this function! Adjust reference count before calling it if necessary

Only use this if you know what your doing! This function should not be needed for standard cairoD usage.

Authors

Johannes Pfau cairoD
Andrej Mitrovic cairoD
cairo team cairo

Copyright

License

cairoD wrapper/bindings Boost License 1.0
cairo LGPL 2.1 / MPL 1.1