Searched defs:ImDrawList (Results 1 – 1 of 1) sorted by relevance
1797 struct ImDrawList struct1803 …ImDrawListFlags Flags; // Flags, you may poke into these to adjust anti-alias… argument1806 …const ImDrawListSharedData* _Data; // Pointer to shared draw data (you can use ImGui::Get… argument1818 …// If you want to create ImDrawList instances, pass them ImGui::GetDrawListSharedData() or create … argument1819 …ImDrawList(const ImDrawListSharedData* shared_data) { _Data = shared_data; _OwnerName = NULL; Clea… in ImDrawList() argument1820 ~ImDrawList() { ClearFreeMemory(); } in ~ImDrawList() argument1826 …2 GetClipRectMin() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.x, cr.y); } in GetClipRectMin()1827 …2 GetClipRectMax() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.z, cr.w); } in GetClipRectMax()1850 inline void PathClear() { _Path.Size = 0; } in PathClear()1851 …line void PathLineTo(const ImVec2& pos) { _Path.push_back(pos); } in PathLineTo()[all …]