Functions

glm::gtx::simd_mat4 Namespace Reference

GLM_GTX_simd_mat4 extension: SIMD implementation of mat4 type. More...

Functions

float determinant (detail::fmat4x4SIMD const &m)
 Return the determinant of a mat4 matrix.
detail::fmat4x4SIMD inverse (detail::fmat4x4SIMD const &m)
 Return the inverse of a mat4 matrix.
detail::tmat4x4< float > mat4_cast (detail::fmat4x4SIMD const &x)
 Convert a simdMat4 to a mat4.
detail::fmat4x4SIMD matrixCompMult (detail::fmat4x4SIMD const &x, detail::fmat4x4SIMD const &y)
 Multiply matrix x by matrix y component-wise, i.e., result[i][j] is the scalar product of x[i][j] and y[i][j].
detail::fmat4x4SIMD outerProduct (detail::fvec4SIMD const &c, detail::fvec4SIMD const &r)
 Treats the first parameter c as a column vector and the second parameter r as a row vector and does a linear algebraic matrix multiply c * r.
detail::fmat4x4SIMD transpose (detail::fmat4x4SIMD const &x)
 Returns the transposed matrix of x (From GLM_GTX_simd_mat4 extension).

Detailed Description

GLM_GTX_simd_mat4 extension: SIMD implementation of mat4 type.