Home
last modified time | relevance | path

Searched defs:ImDrawList (Results 1 – 1 of 1) sorted by relevance

/external/mesa3d/src/imgui/
Dimgui.h1797 struct ImDrawList struct
1803ImDrawListFlags Flags; // Flags, you may poke into these to adjust anti-alias… argument
1806 …const ImDrawListSharedData* _Data; // Pointer to shared draw data (you can use ImGui::Get… argument
1818 …// If you want to create ImDrawList instances, pass them ImGui::GetDrawListSharedData() or create … argument
1819ImDrawList(const ImDrawListSharedData* shared_data) { _Data = shared_data; _OwnerName = NULL; Clea… in ImDrawList() argument
1820 ~ImDrawList() { ClearFreeMemory(); } in ~ImDrawList() argument
1826 …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 …]