Home
last modified time | relevance | path

Searched refs:a_min_of_12 (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/imgui/
Dimgui_draw.cpp938 void ImDrawList::PathArcToFast(const ImVec2& centre, float radius, int a_min_of_12, int a_max_of_12) in PathArcToFast() argument
940 if (radius == 0.0f || a_min_of_12 > a_max_of_12) in PathArcToFast()
945 _Path.reserve(_Path.Size + (a_max_of_12 - a_min_of_12 + 1)); in PathArcToFast()
946 for (int a = a_min_of_12; a <= a_max_of_12; a++) in PathArcToFast()
Dimgui.h1856 …IMGUI_API void PathArcToFast(const ImVec2& centre, float radius, int a_min_of_12, int a_max_of_12…