Closed
Description
Clang currently fails to resolve lerp
overloads where the weight parameter is a scalar. We should support overloads where x
and y
are vectors but the weight is scalar:
export float3 call(float3 x, float3 y, float weight) {
return lerp(x, y, weight); // calls lerp(float3, float3, float3)
}
Metadata
Metadata
Assignees
Type
Projects
Status
Closed