jsPerf.app is an online JavaScript performance benchmark test runner & jsperf.com mirror. It is a complete rewrite in homage to the once excellent jsperf.com now with hopefully a more modern & maintainable codebase.
jsperf.com URLs are mirrored at the same path, e.g:
https://jsperf.com/negative-modulo/2
Can be accessed at:
https://jsperf.app/negative-modulo/2
<script>
var glcanvas = document.createElement('canvas');
var gl = glcanvas.getContext('experimental-webgl');
var canvas1024 = document.createElement('canvas');
canvas1024.width = 1024;
canvas1024.height = 1024;
var img1024 = new Image();
var buff1024 = new Uint8Array(1024*1024*4);
var id1024 = document.createElement("canvas").getContext("2d").createImageData(1024,1024);
var tex1024 = gl.createTexture();
img1024.onload = function() {
gl.bindTexture(gl.TEXTURE_2D, tex1024);
gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, gl.RGBA, gl.UNSIGNED_BYTE, img1024);
};
img1024.src = canvas1024.toDataURL();
</script>
Ready to run.
Test | Ops/sec | |
---|---|---|
texImage2D 1024 |
| ready |
texImage2D 1024 buffer |
| ready |
texImage2D 1024 ImageData |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.