<canvas id="c" width="800" height="800"></canvas>
$c = document.getElementById('c');
$ctx = $c.getContext('2d');
$ctx.clearRect(0, 0, 800, 800);
$px = $ctx.createImageData(1, 1);
$pxls = [];
for (var i=0; i<10000; ++i) $pxls.push({
x: Math.random() * 800 << 0,
y: Math.random() * 800 << 0,
r: 255,
g: 0,
b: 0,
a: 0
});
$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);
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
fillRect/concat | |
fillRect/join |
Test name | Executions per second |
---|---|
fillRect/concat | 1314.0 Ops/sec |
fillRect/join | 1185.7 Ops/sec |
Let's dive into the world of JavaScript microbenchmarks.
Benchmark Definition
The provided JSON represents a benchmark definition for measuring the performance of drawing pixels on an HTML canvas using JavaScript. The test creates an image data object, populates it with random pixel values, and then uses a for
loop to draw each pixel on the canvas.
Script Preparation Code
The script preparation code is responsible for setting up the environment before running the benchmark:
$c = document.getElementById('c'); // Get the canvas element
$ctx = $c.getContext('2d'); // Get the 2D drawing context
$ctx.clearRect(0, 0, 800, 800); // Clear the canvas to a solid black color
$px = $ctx.createImageData(1, 1); // Create an image data object for a single pixel
$pxls = []; // Initialize an array to store pixel values
for (var i=0; i<10000; ++i) {
$pxls.push({
x: Math.random() * 800 << 0, // Generate random x-coordinate
y: Math.random() * 800 << 0, // Generate random y-coordinate
r: 255, // Red value (max intensity)
g: 0, // Green value (min intensity)
b: 0, // Blue value (min intensity)
a: 0 // Alpha value (transparency)
});
}
$i = 0; // Initialize loop counter
Html Preparation Code
The HTML preparation code sets up the canvas element that will be used for drawing:
<canvas id="c" width="800" height="800"></canvas>
Test Cases
There are two test cases:
fillRect/concat
: Uses concatenation to construct the fillStyle
string.fillRect/join
: Uses join()
to concatenate the color components.Library and Purpose
The library used here is not explicitly mentioned, but it appears to be a custom implementation of the createImageData
, getCTX
, and fillRect
functions, as well as the Math.random()
function. These functions are part of the standard JavaScript API, but their specific implementations might vary depending on the browser.
Pros and Cons
The two test cases have different approaches to constructing the fillStyle
string:
fillRect/concat
: Uses concatenation (+
) to combine the color components into a single string.fillRect/join
: Uses join()
to concatenate the color components into an array, which is then converted to a string using toString()
.Other Considerations
When running JavaScript benchmarks, it's essential to consider the following factors:
Alternatives
Other alternatives for measuring JavaScript performance include:
benchmark.js
or jest-benchmark
provide features for running benchmarks and comparing results across different browsers and platforms.Keep in mind that each benchmark has its unique characteristics, and it's essential to consider the specific use case and requirements when choosing a benchmarking approach.