-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (47 loc) · 2.32 KB
/
index.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html class="no-js" lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css">
body { background:#ffffff; padding:0; margin:0; border:0; overflow:hidden; }
</style>
<!-- jQuery -->
<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<!-- GLOW unbuilt scripts
<script src="js/external/GLOW/GLOW.js"></script>
<script src="js/external/GLOW/core/Context.js"></script>
<script src="js/external/GLOW/core/Compiler.js"></script>
<script src="js/external/GLOW/core/CompiledData.js"></script>
<script src="js/external/GLOW/core/FBO.js"></script>
<script src="js/external/GLOW/core/Texture.js"></script>
<script src="js/external/GLOW/core/Cache.js"></script>
<script src="js/external/GLOW/core/Shader.js"></script>
<script src="js/external/GLOW/core/Elements.js"></script>
<script src="js/external/GLOW/core/Uniform.js"></script>
<script src="js/external/GLOW/core/Attribute.js"></script>
<script src="js/external/GLOW/core/InterleavedAttributes.js"></script>
<script src="js/external/GLOW/extras/math/Float.js"></script>
<script src="js/external/GLOW/extras/math/Int.js"></script>
<script src="js/external/GLOW/extras/math/Vector2.js"></script>
<script src="js/external/GLOW/extras/math/Vector3.js"></script>
<script src="js/external/GLOW/extras/math/Vector4.js"></script>
<script src="js/external/GLOW/extras/math/Matrix3.js"></script>
<script src="js/external/GLOW/extras/math/Matrix4.js"></script>
<script src="js/external/GLOW/extras/math/Color.js"></script>
<script src="js/external/GLOW/extras/graph/Node.js"></script>
<script src="js/external/GLOW/extras/graph/Camera.js"></script>
<script src="js/external/GLOW/extras/geometry/Geometry.js"></script>
<script src="js/external/GLOW/extras/geometry/Cube.js"></script>
<script src="js/external/GLOW/extras/geometry/Cylinder.js"></script>
<script src="js/external/GLOW/extras/geometry/Plane.js"></script>
<script src="js/external/GLOW/extras/io/Load.js"></script>
-->
<!-- OnTime scripts -->
<script src="src/OnTime.js"></script>
<script src="src/core/Timeline.js"></script>
<script src="src/core/Module.js"></script>
<script src="src/core/Keyframe.js"></script>
<script src="src/extras/modules/ModuleBackgroundColor.js"></script>
<body onload="TestBench.init();">
<script src="TestBench.js"></script>
</body>
</html>