HomeSort by relevance Sort by last modified time
    Searched full:defaultp (Results 1 - 14 of 14) sorted by null

  /external/vulkan-validation-layers/libs/glm/gtc/
type_precision.hpp 269 typedef detail::tvec1<i8, defaultp> i8vec1;
273 typedef detail::tvec2<i8, defaultp> i8vec2;
277 typedef detail::tvec3<i8, defaultp> i8vec3;
281 typedef detail::tvec4<i8, defaultp> i8vec4;
286 typedef detail::tvec1<i16, defaultp> i16vec1;
290 typedef detail::tvec2<i16, defaultp> i16vec2;
294 typedef detail::tvec3<i16, defaultp> i16vec3;
298 typedef detail::tvec4<i16, defaultp> i16vec4;
303 typedef detail::tvec1<i32, defaultp> i32vec1;
307 typedef detail::tvec2<i32, defaultp> i32vec2
    [all...]
type_ptr.inl 322 GLM_FUNC_QUALIFIER detail::tvec2<T, defaultp> make_vec2(T const * const ptr)
324 detail::tvec2<T, defaultp> Result;
325 memcpy(value_ptr(Result), ptr, sizeof(detail::tvec2<T, defaultp>));
332 GLM_FUNC_QUALIFIER detail::tvec3<T, defaultp> make_vec3(T const * const ptr)
334 detail::tvec3<T, defaultp> Result;
335 memcpy(value_ptr(Result), ptr, sizeof(detail::tvec3<T, defaultp>));
342 GLM_FUNC_QUALIFIER detail::tvec4<T, defaultp> make_vec4(T const * const ptr)
344 detail::tvec4<T, defaultp> Result;
345 memcpy(value_ptr(Result), ptr, sizeof(detail::tvec4<T, defaultp>));
352 GLM_FUNC_QUALIFIER detail::tmat2x2<T, defaultp> make_mat2x2(T const * const ptr
    [all...]
type_ptr.hpp 95 GLM_FUNC_DECL detail::tvec2<T, defaultp> make_vec2(T const * const ptr);
100 GLM_FUNC_DECL detail::tvec3<T, defaultp> make_vec3(T const * const ptr);
105 GLM_FUNC_DECL detail::tvec4<T, defaultp> make_vec4(T const * const ptr);
110 GLM_FUNC_DECL detail::tmat2x2<T, defaultp> make_mat2x2(T const * const ptr);
115 GLM_FUNC_DECL detail::tmat2x3<T, defaultp> make_mat2x3(T const * const ptr);
120 GLM_FUNC_DECL detail::tmat2x4<T, defaultp> make_mat2x4(T const * const ptr);
125 GLM_FUNC_DECL detail::tmat3x2<T, defaultp> make_mat3x2(T const * const ptr);
130 GLM_FUNC_DECL detail::tmat3x3<T, defaultp> make_mat3x3(T const * const ptr);
135 GLM_FUNC_DECL detail::tmat3x4<T, defaultp> make_mat3x4(T const * const ptr);
140 GLM_FUNC_DECL detail::tmat4x2<T, defaultp> make_mat4x2
    [all...]
random.inl 104 GLM_FUNC_QUALIFIER detail::tvec2<T, defaultp> diskRand
109 detail::tvec2<T, defaultp> Result(T(0));
115 detail::tvec2<T, defaultp>(-Radius),
116 detail::tvec2<T, defaultp>(Radius));
125 GLM_FUNC_QUALIFIER detail::tvec3<T, defaultp> ballRand
130 detail::tvec3<T, defaultp> Result(T(0));
136 detail::tvec3<T, defaultp>(-Radius),
137 detail::tvec3<T, defaultp>(Radius));
146 GLM_FUNC_QUALIFIER detail::tvec2<T, defaultp> circularRand
152 return detail::tvec2<T, defaultp>(cos(a), sin(a)) * Radius;
    [all...]
random.hpp 82 GLM_FUNC_DECL detail::tvec2<T, defaultp> circularRand(
90 GLM_FUNC_DECL detail::tvec3<T, defaultp> sphericalRand(
98 GLM_FUNC_DECL detail::tvec2<T, defaultp> diskRand(
106 GLM_FUNC_DECL detail::tvec3<T, defaultp> ballRand(
matrix_transform.inl 157 GLM_FUNC_QUALIFIER detail::tmat4x4<T, defaultp> ortho
167 detail::tmat4x4<T, defaultp> Result(1);
178 GLM_FUNC_QUALIFIER detail::tmat4x4<T, defaultp> ortho
186 detail::tmat4x4<T, defaultp> Result(1);
196 GLM_FUNC_QUALIFIER detail::tmat4x4<valType, defaultp> frustum
206 detail::tmat4x4<valType, defaultp> Result(0);
218 GLM_FUNC_QUALIFIER detail::tmat4x4<valType, defaultp> perspective
238 detail::tmat4x4<valType, defaultp> Result(valType(0));
248 GLM_FUNC_QUALIFIER detail::tmat4x4<valType, defaultp> perspectiveFov
270 detail::tmat4x4<valType, defaultp> Result(valType(0))
    [all...]
matrix_transform.hpp 133 GLM_FUNC_DECL detail::tmat4x4<T, defaultp> ortho(
151 GLM_FUNC_DECL detail::tmat4x4<T, defaultp> ortho(
  /external/vulkan-validation-layers/libs/glm/gtx/
euler_angles.inl 13 GLM_FUNC_QUALIFIER detail::tmat4x4<T, defaultp> eulerAngleX
21 return detail::tmat4x4<T, defaultp>(
29 GLM_FUNC_QUALIFIER detail::tmat4x4<T, defaultp> eulerAngleY
37 return detail::tmat4x4<T, defaultp>(
45 GLM_FUNC_QUALIFIER detail::tmat4x4<T, defaultp> eulerAngleZ
53 return detail::tmat4x4<T, defaultp>(
61 GLM_FUNC_QUALIFIER detail::tmat4x4<T, defaultp> eulerAngleXY
72 return detail::tmat4x4<T, defaultp>(
80 GLM_FUNC_QUALIFIER detail::tmat4x4<T, defaultp> eulerAngleYX
91 return detail::tmat4x4<T, defaultp>(
    [all...]
std_based_type.hpp 56 typedef detail::tvec2<std::size_t, defaultp> size2;
60 typedef detail::tvec3<std::size_t, defaultp> size3;
64 typedef detail::tvec4<std::size_t, defaultp> size4;
68 typedef detail::tvec2<std::size_t, defaultp> size2_t;
72 typedef detail::tvec3<std::size_t, defaultp> size3_t;
76 typedef detail::tvec4<std::size_t, defaultp> size4_t;
euler_angles.hpp 57 GLM_FUNC_DECL detail::tmat4x4<T, defaultp> eulerAngleX(
63 GLM_FUNC_DECL detail::tmat4x4<T, defaultp> eulerAngleY(
69 GLM_FUNC_DECL detail::tmat4x4<T, defaultp> eulerAngleZ(
75 GLM_FUNC_DECL detail::tmat4x4<T, defaultp> eulerAngleXY(
82 GLM_FUNC_DECL detail::tmat4x4<T, defaultp> eulerAngleYX(
89 GLM_FUNC_DECL detail::tmat4x4<T, defaultp> eulerAngleXZ(
96 GLM_FUNC_DECL detail::tmat4x4<T, defaultp> eulerAngleZX(
103 GLM_FUNC_DECL detail::tmat4x4<T, defaultp> eulerAngleYZ(
110 GLM_FUNC_DECL detail::tmat4x4<T, defaultp> eulerAngleZY(
117 GLM_FUNC_DECL detail::tmat4x4<T, defaultp> eulerAngleYXZ
    [all...]
simd_quat.hpp 79 typedef tquat<bool, defaultp> bool_type;
  /external/vulkan-validation-layers/libs/glm/detail/
precision.hpp 39 defaultp = highp enumerator in enum:glm::precision
func_noise.hpp 67 GLM_FUNC_DECL detail::tvec2<typename genType::value_type, defaultp> noise2(genType const & x);
76 GLM_FUNC_DECL detail::tvec3<typename genType::value_type, defaultp> noise3(genType const & x);
85 GLM_FUNC_DECL detail::tvec4<typename genType::value_type, defaultp> noise4(genType const & x);
func_noise.inl 49 return noise1(detail::tvec2<T, defaultp>(x, T(0)));
53 GLM_FUNC_QUALIFIER detail::tvec2<T, defaultp> noise2(T const & x)
55 return detail::tvec2<T, defaultp>(
61 GLM_FUNC_QUALIFIER detail::tvec3<T, defaultp> noise3(T const & x)
63 return detail::tvec3<T, defaultp>(
70 GLM_FUNC_QUALIFIER detail::tvec4<T, defaultp> noise4(T const & x)
72 return detail::tvec4<T, defaultp>(

Completed in 309 milliseconds