Home
last modified time | relevance | path

Searched defs:ImLerp (Results 1 – 1 of 1) sorted by relevance

/external/mesa3d/src/imgui/
Dimgui_internal.h230 template<typename T> static inline T ImLerp(T a, T b, float t) { return (T)(a + (b… in ImLerp() function
236 static inline ImVec2 ImLerp(const ImVec2& a, const ImVec2& b, float t) { return ImVec2(a.x… in ImLerp() function
237 static inline ImVec2 ImLerp(const ImVec2& a, const ImVec2& b, const ImVec2& t) { return ImVec2(a.x… in ImLerp() function
238 static inline ImVec4 ImLerp(const ImVec4& a, const ImVec4& b, float t) { return ImVec4(a.x… in ImLerp() function