<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);
}
for (var i=500;i--;){
var px = $pxls[$i++ % 10000];
$ctx.fillStyle = 'rgba(' + [px.r,px.g,px.b,px.a/255].join() + ')';
$ctx.fillRect(px.x, px.y, 1, 1);
}
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);
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
fillRect/concat | |
fillRect/join | |
fillRect/template-string |
Test name | Executions per second |
---|---|
fillRect/concat | 620.8 Ops/sec |
fillRect/join | 607.3 Ops/sec |
fillRect/template-string | 622.4 Ops/sec |
Let's dive into the benchmark and explain what's being tested.
Benchmark Overview
The benchmark is testing how to set pixel values on a canvas element using different approaches. The test data is generated by creating an array of 10,000 pixels with random red, green, blue, and alpha channel values. The goal is to fill each pixel on the canvas with these values at a rate of 500 iterations per second.
Options Being Compared
There are three options being compared:
rgba(${px.r},${px.g},${px.b},${px.a/255})
;\r\n$ctx.fillRect(px.x, px.y, 1, 1);\r\n}" )rgba(${px.r},${px.g},${px.b},${px.a/255})
;\r\n$ctx.fillRect(px.x, px.y, 1, 1);\r\n}" )Pros and Cons of Each Approach
$
symbol to reference variables in the template string. The only potential issue is that it may not be as efficient as other approaches due to the overhead of concatenating strings.Library Used
There is no explicit library mentioned in the benchmark, but it appears that the createImageData
function and the getContext
method are part of the HTML5 Canvas API.
Special JS Feature or Syntax
There are no special JavaScript features or syntax used in this benchmark. It's purely functional programming using ES6 syntax.
Other Considerations
The benchmark is likely designed to measure the performance difference between these three approaches on a desktop system running Chrome 108. The results will give insight into which approach is fastest and most efficient for this specific use case.
Alternative Approaches
Some alternative approaches that could be tested in this benchmark include:
These alternatives could provide interesting insights into the performance characteristics of each approach and help to identify potential bottlenecks in the benchmark.