-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
56 lines (51 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WebGPU Fluid Simulation</title>
<style>
body {
margin: 0;
padding: 0;
overflow: hidden;
}
/* canvas {
image-rendering: pixelated;
} */
.webgpu-not-supported {
visibility: hidden;
width: 50%;
height: 50%;
padding: 1em;
margin: auto;
border: 4px solid black;
border-radius: 4px;
background-color: #ffdaba;
font-family: monospace;
font-size: large;
text-align: center;
}
</style>
<script src="libraries/dat.gui.min.js"></script>
<script src="libraries/ccapture.all.min.js"></script>
</head>
<body>
<canvas id="canvas-container"></canvas>
<div class="webgpu-not-supported">
<span>
WebGPU doesn't appear to be enabled / supported on this browser. <br>
Check if your browser has any update available!
</span>
<br/><br/>
<a href="https://developer.chrome.com/en/docs/web-platform/webgpu/#use">
https://developer.chrome.com/en/docs/web-platform/webgpu/#use
</a>
</div>
<script src="src/init.js"></script>
<script src="src/shaders.js"></script>
<script src="src/render.js"></script>
<script src="src/utils.js"></script>
<script src="src/main.js"></script>
</body>
</html>