html5 double layer canvas vs on layer canvas (v3)

Revision 3 of this benchmark created by Franck Dubois on


Description

Test des performances d'affichage de canvas html5.

En mode double layer : un premier canvas affiche une image de fond et un second canvas (affiché au dessus du premier) s'efface puis affiche une petite image.

En mode one layer : un seul canvas s'efface, puis affiche une image de fond et enfin une petite image.

Preparation HTML

<canvas id="background" width="400" height="400" style="position:absolute;z-index:0;border: 1px solid #000000;">
</canvas>
<canvas id="foreground" width="400" height="400" style="position:absolute;z-index:1;border: 1px solid #000000;">
</canvas>
<script>
var bgCtx= document.querySelector('#background').getContext('2d');
var fgCtx= document.querySelector('#foreground').getContext('2d');

var imgBg = new Image();
imgBg.src = 'http://www.faire-des-jeux.com/jsperf/background.jpg';
bgCtx.drawImage(imgBg,0,0);
                
var     imgFg = new Image();
imgFg.src = 'http://www.faire-des-jeux.com/jsperf/module.png';
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
one layer canvas
fgCtx.clearRect(0,0,1000,600);
fgCtx.drawImage(imgBg,0,0);
fgCtx.drawImage(imgFg,1,1);


 
ready
double layer canvas
fgCtx.clearRect(0,0,1000,600);
fgCtx.drawImage(imgFg,1,1);

 
ready

Revisions

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