示例#1
0
文件: cairo.go 项目: raichu/gotk3
// FillPreserve is a wrapper around cairo_fill_preserve().
func (v *Context) FillPreserve() {
	C.cairo_fill_preserve(v.native())
}
示例#2
0
func (self *Surface) FillPreserve() {
	C.cairo_fill_preserve(self.context)
}
示例#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
}