Home
last modified time | relevance | path

Searched refs:v_button (Results 1 - 4 of 4) sorted by relevance

/third_party/mesa3d/src/imgui/
H A Dimgui.h395 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 Dimgui_widgets.cpp1016 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 Dimgui_widgets.cpp1229 // 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 Dimgui.h512 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