blob: dc99f788f5cc28bbdabe8a61479beb7e0121690c [file] [log] [blame]
/*
* Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
* for details. All rights reserved. Use of this source code is governed by a
* BSD-style license that can be found in the LICENSE file.
*/
/**
* @assertion Float32x4 shuffle(int mask)
* Shuffle the lane values. [mask] must be one of the 256 shuffle constants.
* @description Checks that the lane values are shuffled correctly.
* @author msyabro
*/
import "dart:typed_data";
import "../../../Utils/expect.dart";
main() {
var fv = new Float32x4(.0, 1.0, 2.0, 3.0);
for (int x = 0; x < 4; ++x) {
for (int y = 0; y < 4; ++y) {
for (int z = 0; z < 4; ++z) {
for (int w = 0; w < 4; ++w) {
int mask = w << 6 | z << 4 | y << 2 | x;
var res = fv.shuffle(mask);
Expect.equals(x, res.x);
Expect.equals(y, res.y);
Expect.equals(z, res.z);
Expect.equals(w, res.w);
}
}
}
}
}