func (_self_ *Pixbuf) Fill(pixel uint32) { _cgo_pixel_ := (C.guint32)(pixel) C.gdk_pixbuf_fill((*C.GdkPixbuf)(_self_._value_), _cgo_pixel_) return }
func (p *Pixbuf) Fill(pixel uint32) { C.gdk_pixbuf_fill(p.GPixbuf, C.guint32(pixel)) }
/* Clears a pixbuf to the given RGBA value, converting the RGBA value into the pixbuf's pixel format. The alpha will be ignored if the pixbuf doesn't have an alpha channel. */ func (self *TraitPixbuf) Fill(pixel uint32) { C.gdk_pixbuf_fill(self.CPointer, C.guint32(pixel)) return }