Home
last modified time | relevance | path

Searched refs:edge1 (Results 1 – 8 of 8) sorted by relevance

/hardware/google/gfxstream/third-party/glm/include/glm/gtx/
Dintersect.inl76 genType edge1 = vert1 - vert0; local
81 float det = dot(edge1, pvec);
93 genType qvec = cross(tvec, edge1);
Dsimd_vec4.hpp319 detail::fvec4SIMD const & edge1,
324 float const & edge1,
Dsimd_vec4.inl475 detail::fvec4SIMD const & edge1, argument
479 return detail::sse_ssp_ps(edge0.Data, edge1.Data, x.Data);
485 float const & edge1, argument
489 return detail::sse_ssp_ps(_mm_set1_ps(edge0), _mm_set1_ps(edge1), x.Data);
/hardware/google/gfxstream/third-party/glm/include/glm/detail/
Dfunc_common.hpp271 GLM_FUNC_DECL genType smoothstep(genType edge0, genType edge1, genType x);
274 GLM_FUNC_DECL vecType<T, P> smoothstep(T edge0, T edge1, vecType<T, P> const & x);
277 …GLM_FUNC_DECL vecType<T, P> smoothstep(vecType<T, P> const & edge0, vecType<T, P> const & edge1, v…
Dfunc_common_simd.inl221 …tvec4<float, P> call(tvec4<float, P> const& edge0, tvec4<float, P> const& edge1, tvec4<float, P> c…
224 result.data = glm_vec4_smoothstep(edge0.data, edge1.data, x.data);
Dfunc_common.inl299 …tic vecType<T, P> call(vecType<T, P> const & edge0, vecType<T, P> const & edge1, vecType<T, P> con…
302 …vecType<T, P> const tmp(clamp((x - edge0) / (edge1 - edge0), static_cast<T>(0), static_cast<T>(1))…
602 GLM_FUNC_QUALIFIER genType smoothstep(genType edge0, genType edge1, genType x) argument
606 genType const tmp(clamp((x - edge0) / (edge1 - edge0), genType(0), genType(1)));
611 GLM_FUNC_QUALIFIER vecType<T, P> smoothstep(T edge0, T edge1, vecType<T, P> const & x) argument
613 …<T, P, vecType, detail::is_aligned<P>::value>::call(vecType<T, P>(edge0), vecType<T, P>(edge1), x);
617 …cType<T, P> smoothstep(vecType<T, P> const & edge0, vecType<T, P> const & edge1, vecType<T, P> con… argument
619 …ail::compute_smoothstep_vector<T, P, vecType, detail::is_aligned<P>::value>::call(edge0, edge1, x);
/hardware/google/gfxstream/third-party/glm/include/glm/simd/
Dcommon.h205 GLM_FUNC_QUALIFIER glm_vec4 glm_vec4_smoothstep(glm_vec4 edge0, glm_vec4 edge1, glm_vec4 x) in glm_vec4_smoothstep() argument
208 glm_vec4 const sub1 = glm_vec4_sub(edge1, edge0); in glm_vec4_smoothstep()
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/appendices/
Dspirvenv.adoc2418 | code:smoothStep(edge0, edge1, x)
2420 where latexmath:[t = clamp(\frac{x - edge0}{edge1 - edge0}, 0.0, 1.0)].