-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbench.html
35 lines (34 loc) · 901 Bytes
/
bench.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>wavepot live test</title>
<link rel="stylesheet" href="style.css">
<style>
html, body {
overflow: visible;
}
pre#bench {
margin: 0;
padding: 10px;
}
</style>
</head>
<body>
<pre id="bench"></pre>
<div id="editor"></div>
<div id="debug"></div>
<script src="bench.js"></script>
<script src="app.js"></script>
<script src="debug.js"></script>
<script src="config.js"></script>
<script src="util.js"></script>
<script src="util.loopbuffer.js"></script>
<script src="keys.js"></script>
<script src="editor.js"></script>
<script src="engine.js"></script>
<script src="engine.audio.js"></script>
<script src="engine.audio.stream.js"></script>
<script src="engine.audio.stream.bench.js"></script>
</body>
</html>