Test name | Executions per second |
---|---|
fillRect/concat | 791.4 Ops/sec |
fillRect/optimized further | 751.2 Ops/sec |
<canvas id="c" width="800" height="300"></canvas>
$c = document.getElementById('c');
$ctx = $c.getContext('2d');
$ctx.clearRect(0, 0, 800, 300);
$px = $ctx.createImageData(1, 1);
$pxls = [];
for (var i=0; i<10000; ++i) $pxls.push({
x: Math.random() * 800 << 0,
y: Math.random() * 300 << 0,
r: Math.random() * 255 << 0,
g: Math.random() * 255 << 0,
b: Math.random() * 255 << 0,
a: Math.random() * 128 << 0 + 128
});
$i = 0;
for (var i=500;i--;){
var px = $pxls[$i++ % 10000];
$ctx.fillStyle = 'rgba(' + px.r + ',' + px.g + ',' + px.b + ',' + (px.a / 255) + ')';
$ctx.fillRect(px.x, px.y, 1, 1);
}
const alphmult = 1 / 255
for (let i=500;--i;){
const px = $pxls[++$i % 10000];
$ctx.fillStyle = `rgba(${px.r},${px.g},${px.b},${px.a * alphmult})`;
$ctx.fillRect(px.x, px.y, 1, 1);
}