mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-20 20:06:49 +00:00
157c6af18e
Avoid cases of filenames Update years in terms and other legal(ish) documents Don't update years in license headers, since change is not meaningful Will add linter rule in seperate commit Happy recompiling everyone! Original Patch By: Nescio Comment By: Gallaecio Differential Revision: D2620 This was SVN commit r27786.
28 lines
801 B
HTML
28 lines
801 B
HTML
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<meta charset="UTF-8"/>
|
||
<title>0 A.D. Simulation Profiling</title>
|
||
<!-- include js -->
|
||
<!-- include graph js -->
|
||
</head>
|
||
<body onload="showReplayData();">
|
||
<div>
|
||
<label>Graph:
|
||
<select id="replayGraphSelection" size="1" onChange="showReplayData()">
|
||
<option value="time" selected="selected">Performance</option>
|
||
<option value="bytes">Memory</option>
|
||
<option value="garbageCollection">Garbage Collections</option>
|
||
</select>
|
||
</label>
|
||
</div>
|
||
<div id="replayGraphContainer">
|
||
<div id="replayGraphLegend" style="width:300px;float:left"></div>
|
||
<div>
|
||
<div id="replayGraph" style="width:1100px; height:600px; float:left"></div>
|
||
<div id="replayGraphDescription" style="float:top"></div>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
</html>
|