drawImage from different sources (v61)

Revision 61 of this benchmark created on


Preparation HTML

<canvas id="cnv" width="320" height="240">
</canvas>
<img id="img" src="http://mozilla.org/media/img/firefox/template/header-logo-inverse.png" style="display: none" />

Setup

function createCanvas(w, h) {
    var canvas = document.createElement('canvas');
    canvas.setAttribute('width', w);
    canvas.setAttribute('height', h);
    return canvas;
  }
  
  // globals
  var g_ctx = document.getElementById('cnv').getContext('2d');
  var g_img = document.getElementById('img');
  var g_offscreenCanvas = createCanvas(320, 240);
  
  g_offscreenCanvas.getContext('2d').drawImage(g_img, 0, 0);

Test runner

Ready to run.

Testing in
TestOps/sec
2param
g_ctx.drawImage(g_img, 0, 0);
ready
allparam
g_ctx.drawImage(g_img, 0, 0, 200, 100, 0, 0, 200, 100);
ready

Revisions

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