// SetAGL set the agl handler where the media player should render its video output. func (this *Player) SetAGL(drawable uint32) (err error) { if this.ptr == nil { return syscall.EINVAL } C.libvlc_media_player_set_agl(this.ptr, C.uint32_t(drawable)) return }
// SetAGL set the agl handler where the media player should render its video output. func (this *Player) SetAGL(drawable uint32) (err error) { if this.ptr == nil { return &VLCError{"Player is nil"} } C.libvlc_media_player_set_agl(this.ptr, C.uint32_t(drawable)) return }