예제 #1
0
파일: surface.go 프로젝트: ungerik/go-cairo
func (self *Surface) Restore() {
	C.cairo_restore(self.context)
}
예제 #2
0
func (c CairoContext) Restore() error {
	C.cairo_restore(c.nativePointer())
	return c.status()
}
예제 #3
0
파일: cairo.go 프로젝트: raichu/gotk3
// Restore is a wrapper around cairo_restore().
func (v *Context) Restore() {
	C.cairo_restore(v.native())
}
예제 #4
0
파일: cairo.go 프로젝트: jimmyfrasche/cairo
//Restore the last drawing state saved with Save and
//remove that state from the stack of saved states.
//
//It is malformed to call Restore without a previous call to Save.
//
//Originally cairo_restore.
func (c *Context) Restore() error {
	C.cairo_restore(c.c)
	return c.Err()
}