-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (18 loc) · 803 Bytes
/
index.html
File metadata and controls
22 lines (18 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=600">
<title>WebGPU Deferred shading demo</title>
<script src="third_party/gl-matrix-min.js"></script>
<script src="third_party/webgl-obj-loader.min.js"></script>
<script src="third_party/dat.gui.min.js"></script>
<script src="third_party/stats.min.js"></script>
</head>
<body style="width: 100%; height: 100%; margin: 0; overflow: hidden">
<div id="not-supported" style="display: none">WebGPU not supported! Please visit <a href="//webgpu.io">webgpu.io</a> to see the current implementation status.</div>
<!-- <canvas></canvas> -->
<canvas height=512 width=512></canvas>
<script type="module" src="app.js"></script>
<!-- <script type="module" src="main.js"></script> -->
</body>
</html>