template <precision P>
struct compute_smoothstep_vector
Defined at line 218 of file ../../third_party/glm/glm/detail/../detail/func_common_simd.inl
FIXME
template
<precision
P>
struct compute_step_vector
<float
, P, tvec4>
{
GLM_FUNC_QUALIFIER static tvec4
<float
, P> call(tvec4
<float
, P> const
&
edge, tvec4
<float
, P> const
&
x)
{
tvec4
<float
, P> result(uninitialize);
result.data = glm_vec4_step(edge.data, x.data);
return result;
}
};
Public Methods
tvec4<float, P> call (const tvec4<float, P> & edge0, const tvec4<float, P> & edge1, const tvec4<float, P> & x)
Defined at line 221 of file ../../third_party/glm/glm/detail/../detail/func_common_simd.inl