SIMD.swizzle
SIMD.swizzle
SIMD.js已经从TC39中取消了积极的开发,并从第三阶段中删除了。它不再被网页浏览器所追求。暴露在 web 上的SIMD 操作在 WebAssembly 中正处于积极的发展之中, 其操作基于 SIMD. js 操作。
静态SIMD.%type%.swizzle()
方法将创建一个新的SIMD数据类型实例,并调整泳道值(重新排序)。
语法
SIMD.Float32x4.swizzle(t, s0, s1, s2, s3)
SIMD.Float64x2.swizzle(t, s0, s1)
SIMD.Int8x16.swizzle(t,s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11,s12,s13,s14,s15)
SIMD.Int16x8.swizzle(t, s0, s1, s2, s3, s4, s5, s6, s7)
SIMD.Int32x4.swizzle(t, s0, s1, s2, s3)
SIMD.Uint8x16.swizzle(t,s0,s1,s2,s3,s4,s5,s6,s7,s8,s9,s10,s11,s12,s13,s14,s15)
SIMD.Uint16x8.swizzle(t, s0, s1, s2, s3, s4, s5, s6, s7)
SIMD.Uint32x4.swizzle(t, s0, s1, s2, s3)
参数
t 一个SIMD类型的实例将被调试/重新排序。s0-s15
t为通道s0-s15
的索引。
返回值
带有通道值的新的SIMD数据类型调整(重新排序)。
描述
静态SIMD.%type%.swizzle()
方法可用于重新排序SIMD数据类型。
例子
调整 Float32x4
var t = SIMD.Float32x4(1, 2, 3, 4
SIMD.Float32x4.swizzle(t, 1, 2, 0, 3
// Float32x4[2,3,1,4]
规范
Specification | Status | Comment |
---|---|---|
SIMDThe definition of 'SIMD.swizzle' in that specification. | Draft | Initial definition. |
浏览器兼容性
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | No support | Nightly build | No support | No support | No support |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | No support | No support | Nightly build | No support | No support | No support |