| 332 | // Helpers: Sorting |
| 333 | #ifndef ImQsort |
| 334 | static inline void ImQsort(void* base, size_t count, size_t size_of_element, int(IMGUI_CDECL *compare_func)(void const*, void const*)) { if (count > 1) qsort(base, count, size_of_element, compare_func); } |
| 335 | #endif |
| 336 | |
| 337 | // Helpers: Color Blending |
no outgoing calls
no test coverage detected