-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
118 lines (113 loc) · 5.72 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<title>WebGPU Speculative Progressive Isosurface Raycaster</title>
</head>
<body>
<div class="container mt-4">
<div class="row">
<div class="col-12 text-center">
<h4>WebGPU Speculative Progressive Isosurface Raycaster</h4>
<canvas id="webgpu-canvas" class="img-fluid" width="1280" height="720"></canvas>
</div>
<img id="image">
<div class="col-12 col-lg-8 mx-auto row">
<div class="form-group col-8">
<label for="isovalue">Isovalue</label>
<input type="range" class="form-control-range" id="isovalue" min="0.0" max="255.0" step="1">
</div>
<div class="form-group col-4">
<select name="resolution" id="resolution">
<option value="full">Full</option>
<option value="half">Half</option>
<option value="quarter">Quarter</option>
</select>
<label for="resolution">Resolution</label>
</div>
<div class="form-group col-4">
<input type="checkbox" class="form-check-input" id="enableCache">
<label for="enableCache">Enable Cache</label>
</div>
<div class="form-group col-4">
<input type="checkbox" class="form-check-input" id="outputImages">
<label for="outputImages">Output Images</label>
</div>
<div class="form-group col-4">
<input type="checkbox" class="form-check-input" id="recordVisibleBlocks">
<label for="recordVisibleBlocks">Record Active/Visible Blocks Stats</label>
</div>
<div class="form-group col-4">
<input type="checkbox" class="form-check-input" id="enableSpeculation">
<label for="enableSpeculation">Enable Speculation</label>
</div>
</div>
<div class="row col-12 col-lg-8 text-left mx-auto mb-2">
<p>See the paper for more details (link soon!), or checkout
the code on <a href="https://github.com/Twinklebear/webgpu-prog-iso">Github</a>!
</div>
<div class="row col-12 col-lg-8 text-left mx-auto mb-2">
<div class="col-12 row text-left">
<p id="fps"></p>
</div>
<div class="col-12 row text-left">
<p id="mcInfo"></p>
</div>
<div class="col-12 row text-left">
<p id="cacheInfo"></p>
</div>
<div class="col-12 row text-left">
<div class="col-12 text-left">
<p id="totalMemDisplay"></p>
</div>
<div class="col-6 text-left">
<p id="mcMemDisplay"></p>
</div>
<div class="col-6 text-left">
<p id="cacheMemDisplay"></p>
</div>
</div>
<div class="col-12 text-left">
<p id="camDisplay"></p>
</div>
<button href="javascript:void(0);" id="runRandomBenchmark" onclick="runBenchmark('random');"
type="button" class="btn btn-primary mr-1">Random Benchmark</button>
<button href="javascript:void(0);" id="runSweepUp"
onclick="runBenchmark('sweepUp');" type="button"
class="btn btn-primary mr-1">Sweep Up Benchmark</button>
<button href="javascript:void(0);" id="runSweepDown"
onclick="runBenchmark('sweepDown');" type="button"
class="btn btn-primary">Sweep Down Benchmark</button>
<button href="javascript:void(0);" id="runOrbit"
onclick="runBenchmark('orbit');" type="button"
class="btn btn-primary mr-1 mt-1">Camera Orbit Benchmark</button>
<button href="javascript:void(0);" onclick="runBenchmark('manualSingle');"
id="recomputeSurface" type="button"
class="btn btn-primary mr-1 mt-1">Recompute Surface (for benchmarking)</button>
<button href="javascript:void(0);" onclick="saveScreenShotButton();"
id="saveScreenShotButton" type="button"
class="btn btn-primary mr-1 mt-1">Take Screenshot</button>
</div>
</div>
</div>
<canvas id="out-canvas" width="1280" height="720" style="display: none;"></canvas>
<script src="shaders/embedded_shaders.js"></script>
<script src="js/gl-matrix-min.js"></script>
<script src="js/webgl-util.js"></script>
<script src="js/exclusive_scan.js"></script>
<script src="js/volumes.js"></script>
<script src="js/tri_table.js"></script>
<script src="js/stream_compact.js"></script>
<script src="js/lru_cache.js"></script>
<script src="js/radix_sort_by_key.js"></script>
<script src="js/util.js"></script>
<script src="js/run_benchmark.js"></script>
<script src="js/volume_raycaster.js"></script>
<script src="js/FileSaver.js"></script>
<script src="js/render.js"></script>
</body>
</html>