-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 834 Bytes
/
index.html
File metadata and controls
25 lines (25 loc) · 834 Bytes
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
<!-- Licensed under a BSD license. See license.html for license -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<title>WebGL Test</title>
<link type="text/css" href="resources/webgl.css" rel="stylesheet" />
</head>
<body>
<canvas id="c"></canvas>
</body>
</html>
<script src="resources/webgl-utils.js"></script>
<script src="resources/shader.js"></script>
<script src="resources/texture.js"></script>
<script src="resources/tile.js"></script>
<script src="resources/layer_background.js"></script>
<script src="resources/layer_grid.js"></script>
<script src="resources/layer_token.js"></script>
<script src="resources/canvas.js"></script>
<script src="resources/main.js"></script>
<script>
main();
</script>