예제 #1
0
파일: cairo.go 프로젝트: raichu/gotk3
// StrokePreserve is a wrapper around cairo_stroke_preserve().
func (v *Context) StrokePreserve() {
	C.cairo_stroke_preserve(v.native())
}
예제 #2
0
파일: surface.go 프로젝트: ungerik/go-cairo
func (self *Surface) StrokePreserve() {
	C.cairo_stroke_preserve(self.context)
}
예제 #3
0
파일: cairo.go 프로젝트: jimmyfrasche/cairo
//StrokePreserve is identical to Stroke except the path is not cleared.
//
//Originally cairo_stroke_preserve.
func (c *Context) StrokePreserve() *Context {
	C.cairo_stroke_preserve(c.c)
	return c
}