Merge pull request #880 from WofWca/set-context-dispose-old

improvement: add `disposeOld` parameter to `setContext`
This commit is contained in:
Yotam Mann 2021-10-13 15:30:17 -04:00 committed by GitHub
commit fba6c14d75
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,9 +30,15 @@ export function getContext(): BaseContext {
/**
* Set the default audio context
* @param context
* @param disposeOld Pass `true` if you don't need the old context to dispose it.
* @category Core
*/
export function setContext(context: BaseContext | AnyAudioContext): void {
export function setContext(context: BaseContext | AnyAudioContext, disposeOld = false): void {
if (disposeOld) {
globalContext.dispose();
}
if (isAudioContext(context)) {
globalContext = new Context(context);
} else if (isOfflineAudioContext(context)) {