// FillPreserve is a wrapper around cairo_fill_preserve(). func (v *Context) FillPreserve() { C.cairo_fill_preserve(v.native()) }
func (self *Surface) FillPreserve() { C.cairo_fill_preserve(self.context) }
//FillPreserve is identical to Fill except it does not clear the current path. // //Originally cairo_fill_preserve. func (c *Context) FillPreserve() *Context { C.cairo_fill_preserve(c.c) return c }