// ClipPreserve is a wrapper around cairo_clip_preserve(). func (v *Context) ClipPreserve() { C.cairo_clip_preserve(v.native()) }
func (self *Surface) ClipPreserve() { C.cairo_clip_preserve(self.context) }
//ClipPreserve is identical Clip but preserves the path in c. // //Originally cairo_clip_preserve. func (c *Context) ClipPreserve() *Context { C.cairo_clip_preserve(c.c) return c }