Searched refs:points_count (Results 1 - 2 of 2) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui_draw.cpp669 void ImDrawList::AddPolyline(const ImVec2* points, const int points_count, ImU32 col, bool closed, float thickness) argument
671 if (points_count < 2)
676 int count = points_count;
678 count = points_count-1;
688 const int vtx_count = thick_line ? points_count*4 : points_count*3;
692 ImVec2* temp_normals = (ImVec2*)alloca(points_count * (thick_line ? 5 : 3) * sizeof(ImVec2)); //-V630
693 ImVec2* temp_points = temp_normals + points_count;
697 const int i2 = (i1+1) == points_count ? 0 : i1+1;
705 temp_normals[points_count
857 AddConvexPolyFilled(const ImVec2 * points,const int points_count,ImU32 col) argument
[all...]
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui_draw.cpp669 void ImDrawList::AddPolyline(const ImVec2* points, const int points_count, ImU32 col, bool closed, float thickness) argument
671 if (points_count < 2)
676 int count = points_count;
678 count = points_count-1;
688 const int vtx_count = thick_line ? points_count*4 : points_count*3;
692 ImVec2* temp_normals = (ImVec2*)alloca(points_count * (thick_line ? 5 : 3) * sizeof(ImVec2)); //-V630
693 ImVec2* temp_points = temp_normals + points_count;
697 const int i2 = (i1+1) == points_count ? 0 : i1+1;
705 temp_normals[points_count
857 AddConvexPolyFilled(const ImVec2 * points,const int points_count,ImU32 col) argument
[all...]

Completed in 9 milliseconds