docs.unity.cn
    Show / Hide Table of Contents

    Method TRANSPOSE4_PS

    TRANSPOSE4_PS(ref v128, ref v128, ref v128, ref v128)

    Transposes a 4x4 matrix of single precision floating point values (_MM_TRANSPOSE4_PS).

    Declaration
    public static void TRANSPOSE4_PS(ref v128 row0, ref v128 row1, ref v128 row2, ref v128 row3)
    Parameters
    Type Name Description
    v128 row0

    __m128 value on corresponding row

    v128 row1

    __m128 value on corresponding row

    v128 row2

    __m128 value on corresponding row

    v128 row3

    __m128 value on corresponding row

    Remarks

    Arguments row0, row1, row2, and row3 are __m128
    values whose elements form the corresponding rows of a 4x4 matrix. The matrix transpose is returned in arguments row0, row1, row2, and row3 where row0 now holds column 0 of the original matrix, row1 now holds column 1 of the original matrix, etc.

    Back to top Copyright © 2022 Unity Technologies
    Generated by DocFX
    on Thursday, June 9, 2022
    Terms of use