-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
23 lines (19 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=600">
<meta http-equiv="origin-trial" content="Aoo8gTx1CMRYVtMMCI7dZTitL2pYYWU/4XPc+bzmVs7vpGGc9V752SKq3pOIuuEW+6MxDNbGWT4k7G5yDufDuwUAAABTeyJvcmlnaW4iOiJodHRwczovL3NocmVrc2hhby5naXRodWIuaW86NDQzIiwiZmVhdHVyZSI6IldlYkdQVSIsImV4cGlyeSI6MTY2MzcxODM5OX0=">
<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>