render-vs-prerender (v22)

Revision 22 of this benchmark created on


Preparation HTML

<canvas id="canvas1" width="500" height="500"></canvas>
<canvas id="canvas2" width="500" height="500"></canvas>
<script>
    var can = document.getElementById('canvas1');
        var ctx = can.getContext('2d');
        
    var can2 = document.createElement('canvas');
        var ctx2 = can2.getContext('2d');
        
    ctx2.beginPath();
    ctx2.fillStyle = 'red';
    ctx2.lineWidth = 4;
    ctx2.moveTo(10,10);
    ctx2.lineTo(10,30);
    ctx2.lineTo(30,30);
    ctx2.fill();
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
render
    ctx2.beginPath();
    ctx2.fillStyle = 'red';
    ctx2.lineWidth = 4;
    ctx2.moveTo(10,10);
    ctx2.lineTo(10,30);
    ctx2.lineTo(30,30);
    ctx2.fill();
ready
pre-rendered
ctx.drawImage(can2, 0, 0);
    
    
 
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.