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