UNPKG
three.fbo-helper
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.1
1.0.0
FrameBuffer Object inspector for three.js
github.com/spite/THREE.FBOHelper
spite/THREE.FBOHelper
three.fbo-helper
/
demo
/
node_modules
/
three
/
src
/
audio
/
AudioContext.js
14 lines
(7 loc)
•
181 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
var
context;
export
function
getAudioContext
(
) {
if
( context ===
undefined
) { context =
new
(
window
.
AudioContext
||
window
.
webkitAudioContext
)(); }
return
context; }