Lines Matching refs:noise1
47 GLM_FUNC_QUALIFIER T noise1(T const & x) function
49 return noise1(detail::tvec2<T, defaultp>(x, T(0)));
56 noise1(x + T(0.0)),
57 noise1(x + T(1.0)));
64 noise1(x - T(1.0)),
65 noise1(x + T(0.0)),
66 noise1(x + T(1.0)));
73 noise1(x - T(1.0)),
74 noise1(x + T(0.0)),
75 noise1(x + T(1.0)),
76 noise1(x + T(2.0)));
80 GLM_FUNC_QUALIFIER T noise1(detail::tvec2<T, P> const & v) function
138 GLM_FUNC_QUALIFIER T noise1(detail::tvec3<T, P> const & v) function
213 GLM_FUNC_QUALIFIER T noise1(detail::tvec4<T, P> const & v) function
306 noise1(x + detail::tvec2<T, P>(0.0)),
307 noise1(detail::tvec2<T, P>(0.0) - x));
314 noise1(x + detail::tvec3<T, P>(0.0)),
315 noise1(detail::tvec3<T, P>(0.0) - x));
322 noise1(x + detail::tvec4<T, P>(0)),
323 noise1(detail::tvec4<T, P>(0) - x));
330 noise1(x - detail::tvec2<T, P>(1.0)),
331 noise1(x + detail::tvec2<T, P>(0.0)),
332 noise1(x + detail::tvec2<T, P>(1.0)));
339 noise1(x - detail::tvec3<T, P>(1.0)),
340 noise1(x + detail::tvec3<T, P>(0.0)),
341 noise1(x + detail::tvec3<T, P>(1.0)));
348 noise1(x - detail::tvec4<T, P>(1)),
349 noise1(x + detail::tvec4<T, P>(0)),
350 noise1(x + detail::tvec4<T, P>(1)));
357 noise1(x - detail::tvec2<T, P>(1)),
358 noise1(x + detail::tvec2<T, P>(0)),
359 noise1(x + detail::tvec2<T, P>(1)),
360 noise1(x + detail::tvec2<T, P>(2)));
368 noise1(x - detail::tvec3<T, P>(1)),
369 noise1(x + detail::tvec3<T, P>(0)),
370 noise1(x + detail::tvec3<T, P>(1)),
371 noise1(x + detail::tvec3<T, P>(2)));
378 noise1(x - detail::tvec4<T, P>(1)),
379 noise1(x + detail::tvec4<T, P>(0)),
380 noise1(x + detail::tvec4<T, P>(1)),
381 noise1(x + detail::tvec4<T, P>(2)));