This repository has been archived on 2023-02-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-benchmark-bundle/benchmark/website/index.html

22 lines
550 B
HTML

<!doctype html>
<html>
<head>
<title>Benchmark Results</title>
<script src="source/chart.bundle.js"></script>
<script src="source/utils.js"></script>
<script src="dataset/latest_snapshot.js"></script>
<link rel="stylesheet" href="style/main.css">
</head>
<body>
<div id="container">
<canvas id="canvas"></canvas>
</div>
<script>
window.onload = function() {
var ctx = document.getElementById("canvas").getContext("2d");
buildChart(ctx, data);
};
</script>
</body>
</html>