This article covers
- Returning the response headers needed to enable the
SharedArrayBuffer
in Firefox. - Accessing and modifying the pixel information from an image file directly in your web page.
- Creating a WebAssembly module that uses pthreads (POSIX threads).
WebAssembly modules leverage several browser features in order to support pthreads: The SharedArrayBuffer
, web workers, and Atomics.
This article covers
Returning the response headers needed to enable the SharedArrayBuffer in Firefox.
Accessing and modifying the pixel information from an image file directly in your web page.
Creating a WebAssembly module that uses pthreads (POSIX threads).
WebAssembly modules leverage several browser features in order to support pthreads: The SharedArrayBuffer, web workers, and Atomics. […]