コード例 #1
0
ファイル: gdk.go プロジェクト: visionect/gotk3
// GetRowstride is a wrapper around gdk_pixbuf_get_rowstride().
func (v *Pixbuf) GetRowstride() int {
	c := C.gdk_pixbuf_get_rowstride(v.native())
	return int(c)
}
コード例 #2
0
ファイル: gdkpixbuf.go プロジェクト: hauke96/go-gtk
func (p *Pixbuf) GetRowstride() int {
	return int(C.gdk_pixbuf_get_rowstride(p.GPixbuf))
}
コード例 #3
0
ファイル: gdkpixbuf_traits.go プロジェクト: reusee/ggir
/*
Queries the rowstride of a pixbuf, which is the number of bytes between
the start of a row and the start of the next row.
*/
func (self *TraitPixbuf) GetRowstride() (return__ int) {
	var __cgo__return__ C.int
	__cgo__return__ = C.gdk_pixbuf_get_rowstride(self.CPointer)
	return__ = int(__cgo__return__)
	return
}