Home
last modified time | relevance | path

Searched refs:ImGuiCol_FrameBgHovered (Results 1 – 4 of 4) sorted by relevance

/external/mesa3d/src/imgui/
Dimgui_draw.cpp187 colors[ImGuiCol_FrameBgHovered] = ImVec4(0.26f, 0.59f, 0.98f, 0.40f); in StyleColorsDark()
242 colors[ImGuiCol_FrameBgHovered] = ImVec4(0.47f, 0.47f, 0.69f, 0.40f); in StyleColorsClassic()
298 colors[ImGuiCol_FrameBgHovered] = ImVec4(0.26f, 0.59f, 0.98f, 0.40f); in StyleColorsLight()
Dimgui_widgets.cpp934 …tColorU32((held && hovered) ? ImGuiCol_FrameBgActive : hovered ? ImGuiCol_FrameBgHovered : ImGuiCo… in Checkbox()
995 …tColorU32((held && hovered) ? ImGuiCol_FrameBgActive : hovered ? ImGuiCol_FrameBgHovered : ImGuiCo… in RadioButton()
1310 const ImU32 frame_col = GetColorU32(hovered ? ImGuiCol_FrameBgHovered : ImGuiCol_FrameBg); in BeginCombo()
1921 …(g.ActiveId == id ? ImGuiCol_FrameBgActive : g.HoveredId == id ? ImGuiCol_FrameBgHovered : ImGuiCo… in DragScalar()
2348 …(g.ActiveId == id ? ImGuiCol_FrameBgActive : g.HoveredId == id ? ImGuiCol_FrameBgHovered : ImGuiCo… in SliderScalar()
2488 …(g.ActiveId == id ? ImGuiCol_FrameBgActive : g.HoveredId == id ? ImGuiCol_FrameBgHovered : ImGuiCo… in VSliderScalar()
Dimgui.h1005 ImGuiCol_FrameBgHovered, enumerator
Dimgui.cpp5887 case ImGuiCol_FrameBgHovered: return "FrameBgHovered"; in GetStyleColorName()