Пример #1
0
// 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
func (p *Pixbuf) GetRowstride() int {
	return int(C.gdk_pixbuf_get_rowstride(p.GPixbuf))
}
Пример #3
0
/*
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
}