Lines Matching defs:vtx_count
603 void ImDrawList::PrimReserve(int idx_count, int vtx_count)
609 VtxBuffer.resize(vtx_buffer_old_size + vtx_count);
688 const int vtx_count = thick_line ? points_count*4 : points_count*3;
689 PrimReserve(idx_count, vtx_count);
821 _VtxCurrentIdx += (ImDrawIdx)vtx_count;
827 const int vtx_count = count*4; // FIXME-OPT: Not sharing edges
828 PrimReserve(idx_count, vtx_count);
870 const int vtx_count = (points_count*2);
871 PrimReserve(idx_count, vtx_count);
916 _VtxCurrentIdx += (ImDrawIdx)vtx_count;
922 const int vtx_count = points_count;
923 PrimReserve(idx_count, vtx_count);
924 for (int i = 0; i < vtx_count; i++)
934 _VtxCurrentIdx += (ImDrawIdx)vtx_count;