Example #1
0
// ShowPage is a wrapper around cairo_show_page().
func (v *Context) ShowPage() {
	C.cairo_show_page(v.native())
}
Example #2
0
func (self *Surface) ShowPage() {
	C.cairo_show_page(self.context)
}
Example #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
}