예제 #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
}