Results 1 - 20 of 1,081

CanvasCaptureMediaStream.requestFrame()

The CanvasCaptureMediaStream.requestFrame() method forces a frame to be captured and sent to the stream. This allows to capture partially rendered frames.
CanvasCaptureMediaStream Experimental Method Reference

SIMD.Bool16x8

The SIMD.Bool16x8 data type is a 128-bit vector divided into 8 lanes storing boolean values.
Experimental JavaScript SIMD

SIMD.Bool32x4

The SIMD.Bool32x4 data type is a 128-bit vector divided into 4 lanes storing boolean values.
Experimental JavaScript SIMD

SIMD.Bool64x2

The SIMD.Bool64x2 data type is a 128-bit vector divided into 2 lanes storing boolean values.
Experimental JavaScript SIMD

SIMD.Bool8x16

The SIMD.Bool8x16 data type is a 128-bit vector divided into 16 lanes storing boolean values.
Experimental JavaScript SIMD

SIMD.Float32x4

The SIMD.Float32x4 data type is a 128-bit vector divided into 4 lanes storing single precision floating point values.
Experimental JavaScript SIMD

SIMD.Float64x2

The SIMD.Float64x2 data type is a 128-bit vector divided into 2 lanes storing double precision floating point values.
Experimental JavaScript SIMD

SIMD.Int16x8

The SIMD.Int16x8 data type is a 128-bit vector divided into 8 lanes storing 16-bit signed integer values.
Experimental JavaScript SIMD

SIMD.Int32x4

The SIMD.Int32x4 data type is a 128-bit vector divided into 4 lanes storing 32-bit signed integer values.
Experimental JavaScript SIMD

SIMD.Int8x16

The SIMD.Int8x16 data type is a 128-bit vector divided into 16 lanes storing 8-bit signed integer values.
Experimental JavaScript SIMD

SIMD

SIMD (pronounced "sim-dee") is short for Single Instruction/Multiple Data which is one classification of computer architectures. SIMD operations perform the same computation on multiple data points resulting in data level parallelism and thus performance gains, for example for 3D graphics and video processing, physics simulations or cryptography, and other domains.
Experimental JavaScript SIMD

SIMD.%type%.abs()

The static SIMD.%type%.abs() method returns a new SIMD data type with absolute values. This operation exists only on floating point SIMD types.
Experimental JavaScript Method SIMD

SIMD.%type%.add()

The static SIMD.%type%.add() method returns a new instance with the lane values added (a + b).
Experimental JavaScript Method SIMD

SIMD.%type%.addSaturate()

The static SIMD.%type%.addSaturate() method returns a new instance with the lane values added (a + b) and saturating behavior on overflow.
Experimental JavaScript Method SIMD

SIMD.%type%.allTrue()

The static SIMD.%BooleanType%.allTrue() method returns a Boolean indicating whether or not all lanes hold a true value.
Experimental JavaScript Method SIMD

SIMD.%type%.and()

The static SIMD.%type%.and() method returns a new instance with the logical AND of the lane values (a & b). This operation exists only on integer and boolean SIMD types.
Experimental JavaScript Method SIMD