-
-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (83 loc) · 3.3 KB
/
index.html
File metadata and controls
99 lines (83 loc) · 3.3 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://colleagueriley.github.io/style.css">
<title>RGFW wasm Examples</title>
</head>
<body>
<header>
<a href="index.html"> <img src="logo.png" alt="RGFW logo"/> </a>
<h2>RGFW wasm Examples</h2>
<p> A cross platform lightweight single-header simple-to-use window abstraction library for creating graphical programs or libraries. </p>
<nav>
<a href="./docs/index.html"> Doxygen Docs </a>
<a href="./wasm/downloads.html"> Download </a>
</nav>
</header>
<br> <!-- Add a line break here -->
<br> <!-- Add a line break here -->
<div class="links-container">
<a href="./wasm/gl11.html">
<img src="wasm/gl11.png" alt="Basic Example">
<h2>gl11</h2>
</a>
<a href="./wasm/gamepad.html">
<img src="wasm/gamepad.png" alt="gamepad Example">
<h2>Minigampad</h2>
</a>
<a href="./wasm/surface.html">
<img src="wasm/surface.png" alt="Surface Example">
<h2>Surface</h2>
</a>
<a href="./wasm/callbacks.html">
<img src="wasm/callbacks.png" alt="Callbacks Example">
<h2>Callbacks</h2>
</a>
<a href="./wasm/events.html">
<img src="wasm/events.png" alt="Events Example">
<h2>Events</h2>
</a>
<a href="./wasm/first-person-camera.html">
<img src="wasm/camera.png" alt="Camera Example">
<h2>Camera</h2>
</a>
<a href="./wasm/gl33.html">
<img src="wasm/gl33.png" alt="GL33 Example">
<h2>GL33</h2>
</a>
<a href="./wasm/gles2.html">
<img src="wasm/gles2.png" alt="GLES2 Example">
<h2>GLES2</h2>
</a>
<a href="./wasm/nuklear.html">
<img src="wasm/nuklear.png" alt="Nuklear Example">
<h2>Nuklear</h2>
</a>
<a href="https://colleagueriley.github.io/PureDoom-RGFW/">
<img src="wasm/doom.png" alt="RGFW DOOM">
<h2>DOOM</h2>
</a>
<h2> RSoft (Software rendering library) </h2>
<br> <!-- Add a line break here -->
<div class="links-container">
<a href="https://colleagueriley.github.io/rsoft//examples/shapes.html">
<img src="https://raw.githubusercontent.com/RSGL/rsoft/refs/heads/main/shapes.gif" alt="Shapes Example">
<h2>Shapes</h2>
</a>
<a href="https://colleagueriley.github.io/rsoft/./examples/textures.html">
<img src="https://raw.githubusercontent.com/RSGL/rsoft/refs/heads/main/textures.gif" alt="Textures Example">
<h2>Textures</h2>
</a>
<a href="https://colleagueriley.github.io/rsoft/./examples/raycaster.html">
<img src="https://raw.githubusercontent.com/RSGL/rsoft/refs/heads/main/raycaster.gif" alt="Raycaster Example">
<h2>Raycaster</h2>
</a>
<a href="https://colleagueriley.github.io/rsoft/./examples/doom-like.html">
<img src="https://raw.githubusercontent.com/RSGL/rsoft/refs/heads/main/doom-like.gif" alt="Doom-like Example">
<h2>Doom-like</h2>
</a>
</div>
</body>
</html>