Home
last modified time | relevance | path

Searched defs:ImMin (Results 1 - 2 of 2) sorted by relevance

/third_party/skia/third_party/externals/imgui/
H A Dimgui_internal.h415 template<typename T> static inline T ImMin(T lhs, T rhs) { return lhs < rhs ? lhs : rhs; } in ImMin() function
423 static inline ImVec2 ImMin(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(lhs.x < rhs.x ? lhs.x : rhs.x, lhs.y < rhs.y ? lhs.y : rhs.y); } in ImMin() function
/third_party/mesa3d/src/imgui/
H A Dimgui_internal.h227 template<typename T> static inline T ImMin(T lhs, T rhs) { return lhs < rhs ? lhs : rhs; } in ImMin() function
233 static inline ImVec2 ImMin(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(lhs.x < rhs.x ? lhs.x : rhs.x, lhs.y < rhs.y ? lhs.y : rhs.y); } in ImMin() function

Completed in 12 milliseconds