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/latest_snapshot.html
Sergey Sharybin 108bb4287f Support hiding statistics for specific scenes
This way it's possible to see side-by-side results of CPU and GPU time on "fast"
scenes, without having Victor scene making bars for bmw really tiny.
2017-08-29 10:21:52 +02:00

34 lines
1.1 KiB
HTML

<!doctype html>
<html>
<head>
<title>Benchmark Results</title>
<script src="source/chart.bundle.js"></script>
<script src="source/utils.js"></script>
<script src="source/jquery.min.js"></script>
<script src="source/jquery.jqGrid.min.js"></script>
<script src="source/bootstrap.min.js"></script>
<script src="dataset/latest_snapshot.js"></script>
<link rel="stylesheet" type="text/css" href="style/main.css">
<link rel="stylesheet" type="text/css" href="style/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="style/ui.jqgrid-bootstrap.css" />
</head>
<body>
<div id="container">
<canvas id="canvas"></canvas>
</div>
<br><br>
<table id="spreadsheet"></table>
<script type="text/javascript">
window.onload = function() {
var chart_ctx = document.getElementById("canvas").getContext("2d");
buildChart(chart_ctx, data);
buildScenesSelector(document.getElementById("container"), data);
var table_ctx = document.getElementById("spreadsheet");
buildSpreadsheet(table_ctx, data);
};
</script>
</body>
</html>