// Shuts down the current [initialized] Freenect context. func (freenect *Freenect) Shutdown() int { _freenect = nil return int(C.freenect_shutdown(freenect.ctx)) }
//FREENECTAPI int freenect_shutdown(freenect_context *ctx); func (ctx *Context) Shutdown() int { return int(C.freenect_shutdown(ctx.ptr())) }
func (d *FreenectDevice) Shutdown() { C.freenect_shutdown(d.DeviceContext) }