Example #1
0
func (_self_ *PixbufSimpleAnim) AddFrame(pixbuf PixbufKind) {
	_cgo_pixbuf_ := (*C.GdkPixbuf)(pixbuf.GetGObject())
	C.gdk_pixbuf_simple_anim_add_frame((*C.GdkPixbufSimpleAnim)(_self_._value_), _cgo_pixbuf_)
	return
}
Example #2
0
/*
Adds a new frame to @animation. The @pixbuf must
have the dimensions specified when the animation
was constructed.
*/
func (self *TraitPixbufSimpleAnim) AddFrame(pixbuf IsPixbuf) {
	C.gdk_pixbuf_simple_anim_add_frame(self.CPointer, pixbuf.GetPixbufPointer())
	return
}