You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Decoders code is provided by adding the decoders folder to the package without pre-processing. Webpack allows to process and include this code as part of the dist when creating workers when they are created with new Worker(new URL('./worker.js', import.meta.url));.
This would also mean that passing the scripts path when clients initialise dwv becomes unnecessary. The synchronous buffer decoding (SynchPixelBufferDecoder class) also becomes obsolete.
The text was updated successfully, but these errors were encountered:
Decoders code is provided by adding the
decoders
folder to the package without pre-processing. Webpack allows to process and include this code as part of the dist when creating workers when they are created withnew Worker(new URL('./worker.js', import.meta.url));
.This would also mean that passing the scripts path when clients initialise dwv becomes unnecessary. The synchronous buffer decoding (
SynchPixelBufferDecoder
class) also becomes obsolete.The text was updated successfully, but these errors were encountered: