-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
58 lines (57 loc) · 2.23 KB
/
gallery.html
File metadata and controls
58 lines (57 loc) · 2.23 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'none'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; connect-src 'self' ws://localhost:* wss://localhost:* ws://127.0.0.1:* wss://127.0.0.1:*; object-src 'none'; base-uri 'self';" />
<meta
name="description"
content="microgl gallery page listing upcoming WebGL 2.0 scenes and technical showcase previews."
/>
<title>microgl | Gallery</title>
<link rel="stylesheet" href="/src/styles/theme.css" />
<style>
body {
overflow: auto;
}
.gallery-shell {
max-width: 64rem;
}
</style>
</head>
<body>
<main class="page-shell gallery-shell">
<h1>Gallery</h1>
<p>Explore upcoming scenes and showcases.</p>
<section class="gallery-grid" aria-label="Gallery">
<article class="gallery-card" id="orbital-camera-control">
<h2>Orbital Camera Control</h2>
<p>Combines CameraComponent with OrbitalCameraSystem input handling and ECS updates.</p>
<span>Demo coming soon</span>
</article>
<article class="gallery-card" id="mesh-render-loop">
<h2>Mesh Render Loop</h2>
<p>Highlights MeshComponent batching and Material binding through the RenderSystem.</p>
<span>Demo coming soon</span>
</article>
<article class="gallery-card" id="ecs-stress-test">
<h2>ECS Stress Test</h2>
<p>Spawns 10,000 animated triangles and displays a live FPS counter for frame-rate validation.</p>
<a href="/demo.html?demo=stress">Open demo</a>
</article>
<article class="gallery-card" id="gltf-scene-loader">
<h2>glTF Scene Loader</h2>
<p>Loads and renders a glTF asset with PBR materials through the ECS pipeline.</p>
<a href="/demo.html?demo=gltf">Open demo</a>
</article>
</section>
<nav aria-label="Main">
<ul>
<li><a href="/index.html">Home</a></li>
<li><a href="/demos.html">Demos</a></li>
</ul>
</nav>
</main>
</body>
</html>