Home
last modified time | relevance | path

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

/external/mesa3d/src/imgui/
Dimgui.h1776 ImDrawCornerFlags_BotRight = 1 << 3, // 0x8 enumerator
1778 ImDrawCornerFlags_Bot = ImDrawCornerFlags_BotLeft | ImDrawCornerFlags_BotRight, // 0xC
1780 ImDrawCornerFlags_Right = ImDrawCornerFlags_TopRight | ImDrawCornerFlags_BotRight, // 0xA
Dimgui_widgets.cpp761 …_rounding_corners = ImDrawCornerFlags_BotLeft | (other_scrollbar ? 0 : ImDrawCornerFlags_BotRight); in Scrollbar()
763 …s_MenuBar)) ? ImDrawCornerFlags_TopRight : 0) | (other_scrollbar ? 0 : ImDrawCornerFlags_BotRight); in Scrollbar()
4079 …ornerFlags_BotLeft; if (x2 >= p_max.x) rounding_corners_flags_cell |= ImDrawCornerFlags_BotRight; } in RenderColorRectWithAlphaCheckerboard()
4443 …, ImVec2(-grid_step + off, off), rounding, ImDrawCornerFlags_TopRight| ImDrawCornerFlags_BotRight); in ColorButton()
Dimgui_draw.cpp1037 const float rounding_br = (rounding_corners & ImDrawCornerFlags_BotRight) ? rounding : 0.0f; in PathRect()