예제 #1
0
파일: cairo.go 프로젝트: raichu/gotk3
// ShowPage is a wrapper around cairo_show_page().
func (v *Context) ShowPage() {
	C.cairo_show_page(v.native())
}
예제 #2
0
파일: surface.go 프로젝트: ungerik/go-cairo
func (self *Surface) ShowPage() {
	C.cairo_show_page(self.context)
}
예제 #3
0
파일: cairo.go 프로젝트: jimmyfrasche/cairo
//ShowPage emits and clears the current page for backends that support multiple
//pages.
//
//Use CopyPage if you don't want to clear the page.
//
//This is a convenience function that simply calls ShowPage on c's target.
//
//Originally cairo_show_page.
func (c *Context) ShowPage() *Context {
	C.cairo_show_page(c.c)
	return c
}