// Renamed, was SuspendContext. func (self *Context) Suspend() { C.alcSuspendContext(self.handle) }
func (context *Context) Suspend() { C.alcSuspendContext((*C.ALCcontext)(context)) }
func (con Context) Suspend() error { C.alcSuspendContext(con.context) return GetError() }