drawImage whole pixels (v18)

Revision 18 of this benchmark created on


Preparation HTML

<canvas id="screen"></canvas>
<script>
  var ctx = document.getElementById("screen").getContext("2d");
  var image = document.createElement("img");
  image.src = "http://icons.iconarchive.com/icons/ph03nyx/super-mario/48/Retro-Mushroom-1UP-2-icon.png";
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
whole pixel
ctx.drawImage(image, 0, 0);
ready
sub pixel
ctx.drawImage(image, 0.5, 0.5);
ready
rounded sub pixel
ctx.drawImage(image, Math.floor(0.5), Math.floor(0.5));
ready

Revisions

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