Searched refs:v_button (Results 1 - 4 of 4) sorted by relevance
/third_party/mesa3d/src/imgui/ |
H A D | imgui.h | 395 IMGUI_API bool RadioButton(const char* label, int* v, int v_button); // shortcut to handle the above pattern when value is an integer
|
H A D | imgui_widgets.cpp | 1016 bool ImGui::RadioButton(const char* label, int* v, int v_button) in RadioButton() argument 1018 const bool pressed = RadioButton(label, *v == v_button); in RadioButton() 1020 *v = v_button; in RadioButton()
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_widgets.cpp | 1229 // FIXME: This would work nicely if it was a public template, e.g. 'template<T> RadioButton(const char* label, T* v, T v_button)', but I'm not sure how we would expose it.. 1230 bool ImGui::RadioButton(const char* label, int* v, int v_button) in RadioButton() argument 1232 const bool pressed = RadioButton(label, *v == v_button); in RadioButton() 1234 *v = v_button; in RadioButton()
|
H A D | imgui.h | 512 IMGUI_API bool RadioButton(const char* label, int* v, int v_button); // shortcut to handle the above pattern when value is an integer
|
Completed in 40 milliseconds