Searched refs:ImSwap (Results 1 - 6 of 6) sorted by relevance
| /xsrc/external/mit/MesaLib.old/dist/src/imgui/ |
| H A D | imgui_internal.h | 226 // - ImMin/ImMax/ImClamp/ImLerp/ImSwap are used by widgets which support for variety of types: signed/unsigned int/long long float/double, using templates here but we could also redefine them 6 times 231 template<typename T> static inline void ImSwap(T& a, T& b) { T tmp = a; a = b; b = tmp; } function in typeref:typename:void
|
| H A D | imgui.cpp | 1783 ImSwap(g, b); 1788 ImSwap(r, g); 4723 if (resize_rect.Min.x > resize_rect.Max.x) ImSwap(resize_rect.Min.x, resize_rect.Max.x); 4724 if (resize_rect.Min.y > resize_rect.Max.y) ImSwap(resize_rect.Min.y, resize_rect.Max.y);
|
| H A D | imgui_draw.cpp | 3000 ImSwap(x_start_norm, x_end_norm);
|
| /xsrc/external/mit/MesaLib/dist/src/imgui/ |
| H A D | imgui_internal.h | 226 // - ImMin/ImMax/ImClamp/ImLerp/ImSwap are used by widgets which support for variety of types: signed/unsigned int/long long float/double, using templates here but we could also redefine them 6 times 231 template<typename T> static inline void ImSwap(T& a, T& b) { T tmp = a; a = b; b = tmp; } function in typeref:typename:void
|
| H A D | imgui.cpp | 1783 ImSwap(g, b); 1788 ImSwap(r, g); 4723 if (resize_rect.Min.x > resize_rect.Max.x) ImSwap(resize_rect.Min.x, resize_rect.Max.x); 4724 if (resize_rect.Min.y > resize_rect.Max.y) ImSwap(resize_rect.Min.y, resize_rect.Max.y);
|
| H A D | imgui_draw.cpp | 3000 ImSwap(x_start_norm, x_end_norm);
|
Completed in 56 milliseconds