diff options
| author | James Barnett <noreply@jamesbarnett.xyz> | 2025-07-26 13:47:20 +0100 |
|---|---|---|
| committer | James Barnett <noreply@jamesbarnett.xyz> | 2025-07-26 13:47:20 +0100 |
| commit | ebcef463bb6c447e788c90fe4235f2504de186d3 (patch) | |
| tree | c7500ef92b51544195ef9fb75744ac2ce39091a8 /index.html | |
| parent | 10bfc58085c6ab7e62077a1a9b6a6d922fffb025 (diff) | |
| download | js-raytracer-ebcef463bb6c447e788c90fe4235f2504de186d3.tar.xz js-raytracer-ebcef463bb6c447e788c90fe4235f2504de186d3.zip | |
Add configurable render chunk allocation modes
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 17 |
1 files changed, 11 insertions, 6 deletions
@@ -63,12 +63,6 @@ <span>Performance options</span> <div class="form-group"> <label class="form-switch"> - <input id="buffer-draw" type="checkbox" checked> - <i class="form-icon"></i> Buffer draw calls - </label> - </div> - <div class="form-group"> - <label class="form-switch"> <input id="direct-transfer" type="checkbox" checked> <i class="form-icon"></i> Zero-copy array transfer </label> @@ -87,6 +81,17 @@ <span id="threads-value" class="input-group-addon">4</span> </div> </div> + <div class="form-group"> + <label class="form-group"> + <label id="chunk-allocation-mode-label" class="form-label label-sm" for="res">Chunk allocation mode</label> + <select id="chunk-allocation-mode" class="form-select select-sm"> + <option value="SEQUENTIAL" selected>Sequential</option> + <option value="RANDOM">Random</option> + <option value="CENTER_TO_EDGE">Center to edge</option> + <option value="EDGE_TO_CENTER">Edge to center</option> + </select> + </label> + </div> </div> <div class="column col-4"> <div class="form-group"> |