/external/vulkan-validation-layers/libs/glm/ |
mat3x4.hpp | 41 typedef detail::tmat3x4<float, lowp> lowp_mat3x4; 48 typedef detail::tmat3x4<float, mediump> mediump_mat3x4; 55 typedef detail::tmat3x4<float, highp> highp_mat3x4;
|
fwd.hpp | [all...] |
/external/vulkan-validation-layers/libs/glm/detail/ |
type_mat3x4.hpp | 42 struct tmat3x4 struct in namespace:glm::detail 49 typedef tmat3x4<T, P> type; 60 GLM_FUNC_DECL tmat3x4(); 61 GLM_FUNC_DECL tmat3x4(tmat3x4<T, P> const & m); 63 GLM_FUNC_DECL tmat3x4(tmat3x4<T, Q> const & m); 65 GLM_FUNC_DECL explicit tmat3x4( 67 GLM_FUNC_DECL explicit tmat3x4( 69 GLM_FUNC_DECL tmat3x4( [all...] |
type_mat.hpp | 45 template <typename T, precision P> struct tmat3x4; 237 typedef detail::tmat3x4<float, lowp> lowp_mat3x4; 244 typedef detail::tmat3x4<float, mediump> mediump_mat3x4; 251 typedef detail::tmat3x4<float, highp> highp_mat3x4; [all...] |
glm.cpp | 226 // tmat3x4 type explicit instantiation 227 template struct tmat3x4<float32, lowp>; 228 template struct tmat3x4<float64, lowp>; 230 template struct tmat3x4<float32, mediump>; 231 template struct tmat3x4<float64, mediump>; 233 template struct tmat3x4<float32, highp>; 234 template struct tmat3x4<float64, highp>;
|
type_mat4x3.hpp | 50 typedef tmat3x4<T, P> transpose_type; 112 GLM_FUNC_DECL explicit tmat4x3(tmat3x4<T, P> const & x); 193 tmat3x4<T, P> const & m2);
|
func_matrix.hpp | 96 typedef tmat3x4<T, P> type;
|
type_mat4x4.hpp | 116 GLM_FUNC_DECL explicit tmat4x4(tmat3x4<T, P> const & x); 213 GLM_FUNC_DECL tmat3x4<T, P> operator* ( 215 tmat3x4<T, P> const & m2);
|
type_mat2x4.hpp | 100 GLM_FUNC_DECL explicit tmat2x4(tmat3x4<T, P> const & x); 187 GLM_FUNC_DECL tmat3x4<T, P> operator* (
|
type_mat4x2.hpp | 112 GLM_FUNC_DECL explicit tmat4x2(tmat3x4<T, P> const & x); 188 tmat3x4<T, P> const & m2);
|
type_mat2x3.hpp | 98 GLM_FUNC_DECL explicit tmat2x3(tmat3x4<T, P> const & x);
|
type_mat3x2.hpp | 104 GLM_FUNC_DECL explicit tmat3x2(tmat3x4<T, P> const & x);
|
type_mat2x2.hpp | 105 GLM_FUNC_DECL explicit tmat2x2(tmat3x4<T, P> const & x);
|
type_mat3x3.hpp | 110 GLM_FUNC_DECL explicit tmat3x3(tmat3x4<T, P> const & x);
|
/external/vulkan-validation-layers/libs/glm/gtc/ |
matrix_integer.hpp | 94 typedef detail::tmat3x4<int, highp> highp_imat3x4; 144 typedef detail::tmat3x4<int, mediump> mediump_imat3x4; 194 typedef detail::tmat3x4<int, lowp> lowp_imat3x4; 243 typedef detail::tmat3x4<uint, highp> highp_umat3x4; 293 typedef detail::tmat3x4<uint, mediump> mediump_umat3x4; 343 typedef detail::tmat3x4<uint, lowp> lowp_umat3x4;
|
type_ptr.hpp | 135 GLM_FUNC_DECL detail::tmat3x4<T, defaultp> make_mat3x4(T const * const ptr);
|
type_precision.hpp | 727 typedef detail::tmat3x4<f32, defaultp> fmat3x4; 785 typedef detail::tmat3x4<f32, defaultp> f32mat3x4; 843 typedef detail::tmat3x4<f64, defaultp> f64mat3x4;
|
/external/vulkan-validation-layers/libs/glm/gtx/ |
compatibility.hpp | 101 typedef detail::tmat3x4<bool, highp> bool3x4; //!< \brief boolean matrix with 3 x 4 components. (From GLM_GTX_compatibility extension) 117 typedef detail::tmat3x4<int, highp> int3x4; //!< \brief integer matrix with 3 x 4 components. (From GLM_GTX_compatibility extension) 133 typedef detail::tmat3x4<float, highp> float3x4; //!< \brief single-precision floating-point matrix with 3 x 4 components. (From GLM_GTX_compatibility extension) 149 typedef detail::tmat3x4<double, highp> double3x4; //!< \brief double-precision floating-point matrix with 3 x 4 components. (From GLM_GTX_compatibility extension)
|
matrix_operation.hpp | 86 GLM_FUNC_DECL detail::tmat3x4<T, P> diagonal3x4(
|
dual_quaternion.hpp | 77 GLM_FUNC_DECL explicit tdualquat(tmat3x4<T, P> const & aug_mat); 185 GLM_FUNC_DECL detail::tmat3x4<T, P> mat3x4_cast( 200 detail::tmat3x4<T, P> const & x);
|
io.hpp | 136 GLM_FUNC_DECL std::basic_ostream<CTy,CTr>& operator<<(std::basic_ostream<CTy,CTr>&, tmat3x4<T,P> const&);
|