HTML Preparation code:
AخA
 
1
<canvas id='master' width='100' height='100'></canvas>
2
<canvas id='clone' width='100' height='100'></canvas>
Script Preparation code:
x
 
var master = document.getElementById('master');
var masterctx = master.getContext('2d');
var clone = document.getElementById('master').getContext('2d');
masterctx.fillRect(0,0,50,50);
masterctx.fillStyle = "red";
masterctx.fillRect(50,50,100,100);
var img = masterctx.getImageData(0,0,100,100);
var half = masterctx.getImageData(25,0,50,100);
Tests:
  • di full

     
    clone.drawImage(master,0,0);
    clone.clearRect(0,0,100,100);
  • di half

     
    clone.drawImage(master,25,0,50,100,25,0,50,100);
    clone.clearRect(0,0,100,100);
  • pid full

     
    clone.putImageData(img,0,0);
    clone.clearRect(0,0,100,100);
  • pid half

     
    clone.putImageData(half,25,0);
    clone.clearRect(0,0,100,100);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    di full
    di half
    pid full
    pid half

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 months ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:132.0) Gecko/20100101 Firefox/132.0
Firefox 132 on Windows
View result in a separate tab
Test name Executions per second
di full 22770.1 Ops/sec
di half 212870.5 Ops/sec
pid full 199115.6 Ops/sec
pid half 299443.9 Ops/sec