コード例 #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
ファイル: surface.go プロジェクト: ungerik/go-cairo
func (self *Surface) FillPreserve() {
	C.cairo_fill_preserve(self.context)
}
コード例 #3
0
ファイル: cairo.go プロジェクト: jimmyfrasche/cairo
//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
}