-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (23 loc) · 931 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>WebGL test application</title>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Common Utilities -->
<script type="text/javascript" src="glMatrix-0.9.5.min.js"></script>
<script type="text/javascript" src="webgl-utils.js"></script>
<!-- Application code -->
<script type="text/javascript" src="camera.js"></script>
<script type="text/javascript" src="diamond_sqr.js"></script>
<script type="text/javascript" src="terrain.js"></script>
<script type="text/javascript" src="main.js"></script>
</head>
<body>
<div id="viewport-frame">
<canvas id="viewport" style="border: none;" width="1024" height="768">
It appears that your browser does not support WebGL or doesn't have it enabled.
</canvas>
</div>
</body>
</html>