Skip to content

Commit 46e32f3

Browse files
feat: webgl and wasm implementations ready; migrate to Vite (from Parcel)
1 parent 9a88ca8 commit 46e32f3

File tree

27 files changed

+1851
-2669
lines changed

27 files changed

+1851
-2669
lines changed

index.html

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>WebGL Performance Comparison</title>
7+
<link rel="preconnect" href="https://fonts.googleapis.com">
8+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
9+
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap" rel="stylesheet">
10+
<link rel="stylesheet" href="src/index.css"/>
11+
</head>
12+
<body>
13+
<div class="container">
14+
<h1>Points Simulation performance comparison</h1>
15+
<p class="subtitle"></p>
16+
17+
<div class="options">
18+
<div class="option">
19+
<div class="option-info">
20+
<h3>JS Physics + JS Render</h3>
21+
</div>
22+
<a href="src/pages/js-physics-js-render/index.html" class="btn">Test</a>
23+
</div>
24+
25+
<div class="option">
26+
<div class="option-info">
27+
<h3>WASM Physics + JS Render</h3>
28+
</div>
29+
<a href="src/pages/wasm-physics-js-render/index.html" class="btn">Test</a>
30+
</div>
31+
32+
<div class="option">
33+
<div class="option-info">
34+
<h3>⚡⚡JS Physics + WebGl Render</h3>
35+
</div>
36+
<a href="src/pages/js-physics-webgl-render/index.html" class="btn">Test</a>
37+
</div>
38+
39+
<div class="option">
40+
<div class="option-info">
41+
<h3>⚡⚡⚡ WASM Physics + WebGl Canvas</h3>
42+
</div>
43+
<a href="src/pages/wasm-physics-webgl-render/index.html" class="btn">Test</a>
44+
</div>
45+
</div>
46+
</div>
47+
</div>
48+
</body>
49+
</html>

0 commit comments

Comments
 (0)