コード例 #1
0
ファイル: basic-simd.cs プロジェクト: Zman0169/mono
	public static int test_0_shuffle_with_two_args_pd () {
		Vector2d a = new Vector2d (1,2);
		Vector2d b = new Vector2d (5,6);

		Vector2d c = a.Shuffle (b, 0x2);
		if (c.X != 1)
			return 1;
		if (c.Y != 6)
			return 2;
		return 0;
	}