Home
last modified time | relevance | path

Searched refs:IM_UNUSED (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/imgui/
Dimgui.h75 #define IM_UNUSED(_VAR) ((void)_VAR) // Used to silence … macro
1500 …nst ImVec2& pos, bool on_edge = false, float outward = 0.f) { IM_UNUSED(on_edge); IM_UNUSED(outwar…
Dimgui.cpp1064 static void* MallocWrapper(size_t size, void* user_data) { IM_UNUSED(user_data); return malloc… in MallocWrapper()
1065 static void FreeWrapper(void* ptr, void* user_data) { IM_UNUSED(user_data); free(ptr); } in FreeWrapper()
1067 static void* MallocWrapper(size_t size, void* user_data) { IM_UNUSED(user_data); IM_UNUSED(siz… in MallocWrapper()
1068 static void FreeWrapper(void* ptr, void* user_data) { IM_UNUSED(user_data); IM_UNUSED(ptr… in FreeWrapper()
2716 IM_UNUSED(id); // Avoid unused variable warnings when asserts are compiled out. in MarkItemEdited()
Dimgui_widgets.cpp6560 IM_UNUSED(flags); in TabItemBackground()