示例#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
func (self *Surface) ShowPage() {
	C.cairo_show_page(self.context)
}
示例#3
0
//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
}