コード例 #1
0
ファイル: surface.go プロジェクト: ungerik/go-cairo
func (self *Surface) GetContent() Content {
	return Content(C.cairo_surface_get_content(self.surface))
}
コード例 #2
0
ファイル: surface.go プロジェクト: jimmyfrasche/cairo
//Content reports the content of the surface.
//
//Originally cairo_surface_get_content.
func (e *XtensionSurface) Content() Content {
	return Content(C.cairo_surface_get_content(e.s))
}