Home | History | Annotate | Download | only in gtx

Lines Matching full:fastpow

12 	// fastPow:
14 GLM_FUNC_QUALIFIER genType fastPow(genType const & x, genType const & y)
19 VECTORIZE_VEC_VEC(fastPow)
22 GLM_FUNC_QUALIFIER T fastPow(const T x, int y)
31 GLM_FUNC_QUALIFIER detail::tvec2<T, P> fastPow(
36 fastPow(x.x, y.x),
37 fastPow(x.y, y.y));
41 GLM_FUNC_QUALIFIER detail::tvec3<T, P> fastPow(
46 fastPow(x.x, y.x),
47 fastPow(x.y, y.y),
48 fastPow(x.z, y.z));
52 GLM_FUNC_QUALIFIER detail::tvec4<T, P> fastPow(
57 fastPow(x.x, y.x),
58 fastPow(x.y, y.y),
59 fastPow(x.z, y.z),
60 fastPow(x.w, y.w));