<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
});
$i = 0;
$ctx.fillStyle = 'rgba(128, 128, 128, 1)';
for (var i=500;i--;){
var px = $pxls[$i++ % 10000];
$ctx.fillRect(px.x, px.y, 1, 1);
}
for (var i=500;i--;){
var px=$pxls[$i++ % 10000], d=$px.data;
d[0] = 128;
d[1] = 128;
d[2] = 128;
d[3] = 1;
$ctx.putImageData($px, px.x, px.y);
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
fillRect | |
1×1 Image Data |
Test name | Executions per second |
---|---|
fillRect | 1459.8 Ops/sec |
1×1 Image Data | 276.8 Ops/sec |
Let's break down the provided benchmark and explain what's being tested.
Benchmark Definition
The benchmark definition is a JSON object that describes the test case. It includes:
Name
: The name of the benchmark, which is "Setting Canvas Pixel With Same Color".Description
: An empty string, indicating that there's no description for this benchmark.Script Preparation Code
: A JavaScript code snippet that prepares the canvas and sets up the test environment. This code:<canvas>
element with an ID of "c" using document.getElementById
.$ctx
) from the canvas using $c.getContext('2d')
.$ctx.createImageData(1, 1)
. This object will be used to set the pixel color.$pxls
) to store 10,000 random pixel coordinates (x and y).Html Preparation Code
: A string that defines the HTML structure of the page, including a <canvas>
element with an ID of "c" and width/height attributes set to 800x300.Individual Test Cases
The benchmark includes two test cases:
$ctx.fillRect
.putImageData
method to draw the image at random coordinates using $ctx.putImageData
.Pros and Cons
The two test cases are designed to measure the performance of the browser's canvas rendering engine. Here's a brief analysis of each test case:
putImageData
might introduce some overhead due to the creation and manipulation of an additional image object.Library Usage
Neither test case explicitly uses any external libraries. However, it's worth noting that the browser's canvas API is built on top of WebGL (Web Graphics Library) under the hood, which can provide performance benefits for graphics-intensive applications.
Special JS Feature/Syntax
There are no special JavaScript features or syntax used in these benchmark definitions. The code uses standard JavaScript language constructs and follows typical coding practices.
Alternatives
Other alternatives to measure browser performance could include:
Keep in mind that these alternatives might require additional setup and configuration to accurately measure the desired aspects of browser performance.