Home | History | Annotate | Download | only in scriptc

Lines Matching full:amount

725  * @param amount value to be clamped.  Supports 1,2,3,4 components
729 _RS_RUNTIME float __attribute__((overloadable)) clamp(float amount, float low, float high);
730 _RS_RUNTIME float2 __attribute__((overloadable)) clamp(float2 amount, float2 low, float2 high);
731 _RS_RUNTIME float3 __attribute__((overloadable)) clamp(float3 amount, float3 low, float3 high);
732 _RS_RUNTIME float4 __attribute__((overloadable)) clamp(float4 amount, float4 low, float4 high);
733 _RS_RUNTIME float2 __attribute__((overloadable)) clamp(float2 amount, float low, float high);
734 _RS_RUNTIME float3 __attribute__((overloadable)) clamp(float3 amount, float low, float high);
735 _RS_RUNTIME float4 __attribute__((overloadable)) clamp(float4 amount, float low, float high);
746 * return start + ((stop - start) * amount);
750 _RS_RUNTIME float __attribute__((overloadable)) mix(float start, float stop, float amount);
751 _RS_RUNTIME float2 __attribute__((overloadable)) mix(float2 start, float2 stop, float2 amount);
752 _RS_RUNTIME float3 __attribute__((overloadable)) mix(float3 start, float3 stop, float3 amount);
753 _RS_RUNTIME float4 __attribute__((overloadable)) mix(float4 start, float4 stop, float4 amount);
754 _RS_RUNTIME float2 __attribute__((overloadable)) mix(float2 start, float2 stop, float amount);
755 _RS_RUNTIME float3 __attribute__((overloadable)) mix(float3 start, float3 stop, float amount);
756 _RS_RUNTIME float4 __attribute__((overloadable)) mix(float4 start, float4 stop, float amount);