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