Home | History | Annotate | Download | only in detail

Lines Matching full:smoothstep

583 	// smoothstep
585 GLM_FUNC_QUALIFIER genType smoothstep
594 "'smoothstep' only accept floating-point inputs");
601 GLM_FUNC_QUALIFIER detail::tvec2<T, P> smoothstep
610 "'smoothstep' only accept floating-point inputs");
613 smoothstep(edge0, edge1, x.x),
614 smoothstep(edge0, edge1, x.y));
618 GLM_FUNC_QUALIFIER detail::tvec3<T, P> smoothstep
627 "'smoothstep' only accept floating-point inputs");
630 smoothstep(edge0, edge1, x.x),
631 smoothstep(edge0, edge1, x.y),
632 smoothstep(edge0, edge1, x.z));
636 GLM_FUNC_QUALIFIER detail::tvec4<T, P> smoothstep
645 "'smoothstep' only accept floating-point inputs");
648 smoothstep
649 smoothstep(edge0, edge1, x.y),
650 smoothstep(edge0, edge1, x.z),
651 smoothstep(edge0, edge1, x.w));
655 GLM_FUNC_QUALIFIER detail::tvec2<T, P> smoothstep
664 "'smoothstep' only accept floating-point inputs");
667 smoothstep(edge0.x, edge1.x, x.x),
668 smoothstep(edge0.y, edge1.y, x.y));
672 GLM_FUNC_QUALIFIER detail::tvec3<T, P> smoothstep
681 "'smoothstep' only accept floating-point inputs");
684 smoothstep(edge0.x, edge1.x, x.x),
685 smoothstep(edge0.y, edge1.y, x.y),
686 smoothstep(edge0.z, edge1.z, x.z));
690 GLM_FUNC_QUALIFIER detail::tvec4<T, P> smoothstep
699 "'smoothstep' only accept floating-point inputs");
702 smoothstep(edge0.x, edge1.x, x.x),
703 smoothstep(edge0.y, edge1.y, x.y),
704 smoothstep(edge0.z, edge1.z, x.z),
705 smoothstep(edge0.w, edge1.w, x.w));