Exemplo n.º 1
0
// FillPreserve is a wrapper around cairo_fill_preserve().
func (v *Context) FillPreserve() {
	C.cairo_fill_preserve(v.native())
}
Exemplo n.º 2
0
func (self *Surface) FillPreserve() {
	C.cairo_fill_preserve(self.context)
}
Exemplo n.º 3
0
//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
}