Ejemplo n.º 1
0
// ClipPreserve is a wrapper around cairo_clip_preserve().
func (v *Context) ClipPreserve() {
	C.cairo_clip_preserve(v.native())
}
Ejemplo n.º 2
0
func (self *Surface) ClipPreserve() {
	C.cairo_clip_preserve(self.context)
}
Ejemplo n.º 3
0
//ClipPreserve is identical Clip but preserves the path in c.
//
//Originally cairo_clip_preserve.
func (c *Context) ClipPreserve() *Context {
	C.cairo_clip_preserve(c.c)
	return c
}