-
Notifications
You must be signed in to change notification settings - Fork 304
/
index.html
76 lines (72 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>WebGPU Samples</title>
<meta
name="description"
content="The WebGPU Samples are a set of samples demonstrating the use of the WebGPU API."
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link
href="https://fonts.googleapis.com/css?family=Inconsolata&display=swap"
rel="stylesheet"
/>
<link
rel="icon"
type="image/x-icon"
href="favicon.ico"
/>
<link href="css/styles.css" rel="stylesheet">
</head>
<script defer type="module" src="main.js"></script>
<body>
<div class="wrapper">
<nav class="panel container">
<h1>
<a href="./">WebGPU Samples</a>
</h1>
<input type="checkbox" id="menuToggle">
<label class="expand" for="menuToggle"></label>
<div class="panelContents">
<a href="https://github.com/webgpu/webgpu-samples">
Github
</a>
<hr>
<div id="samplelist"></div>
</div>
</nav>
<main>
<div id="intro">
<p>
The WebGPU Samples are a set of samples and demos demonstrating the use
of the <a href="//webgpu.dev">WebGPU API</a>. Please see the current
implementation status and how to run WebGPU in your browser at
<a href="//webgpu.io">webgpu.io</a>.
</p>
</div>
<div id="sample" style="display: none;">
<div class="sampleInfo">
<h1 id="title"></h1>
<a id="src" target="_blank" rel="noreferrer" href="">View source!</a>
— <a id="standalone" target="_blank" rel="noreferrer" href="">View as standalone webpage</a>
<p id="description"></p>
</div>
<div class="sampleContainer"></div>
</div>
<nav id="code" class="sourceFileNav">
<div class="sourceLR" id="sourceL"><</div>
<div id="sourceTabs" class="sourceFileScrollContainer">
<ul id="codeTabs"></ul>
</div>
<div class="sourceLR" id="sourceR">></div>
</nav>
<div id="sources"></div>
</main>
</div>
</body>
</html>