Use TypedArray.prototype.fill() a bit more in the code-base

Please see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/fill, which is implemented in all browsers that we currently support.
This commit is contained in:
Jonas Jenwald 2022-05-13 12:42:51 +02:00
parent fbc7981c98
commit d540df0582

View File

@ -1558,9 +1558,7 @@ class SimpleSegmentVisitor {
// The contents of ArrayBuffers are initialized to 0. // The contents of ArrayBuffers are initialized to 0.
// Fill the buffer with 0xFF only if info.defaultPixelValue is set // Fill the buffer with 0xFF only if info.defaultPixelValue is set
if (info.defaultPixelValue) { if (info.defaultPixelValue) {
for (let i = 0, ii = buffer.length; i < ii; i++) { buffer.fill(0xff);
buffer[i] = 0xff;
}
} }
this.buffer = buffer; this.buffer = buffer;
} }