MCPcopy Create free account
hub / github.com/KebsCS/KBotExt / GetForegroundDrawList

Function GetForegroundDrawList

KBotExt/imgui/imgui_internal.h:2811–2811  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2809 IMGUI_API void SetCurrentFont(ImFont* font);
2810 inline ImFont* GetDefaultFont() { ImGuiContext& g = *GImGui; return g.IO.FontDefault ? g.IO.FontDefault : g.IO.Fonts->Fonts[0]; }
2811 inline ImDrawList* GetForegroundDrawList(ImGuiWindow* window) { IM_UNUSED(window); return GetForegroundDrawList(); } // This seemingly unnecessary wrapper simplifies compatibility between the 'master' and 'docking' branches.
2812 IMGUI_API ImDrawList* GetBackgroundDrawList(ImGuiViewport* viewport); // get background draw list for the given viewport. this draw list will be the first rendering one. Useful to quickly draw shapes/text behind dear imgui contents.
2813 IMGUI_API ImDrawList* GetForegroundDrawList(ImGuiViewport* viewport); // get foreground draw list for the given viewport. this draw list will be the last rendered one. Useful to quickly draw shapes/text over dear imgui contents.
2814 IMGUI_API void AddDrawListToDrawDataEx(ImDrawData* draw_data, ImVector<ImDrawList*>* out_list, ImDrawList* draw_list);

Callers 15

DebugNodeTableMethod · 0.85
RenderMouseCursorMethod · 0.85
ItemHoverableMethod · 0.85
GetForegroundDrawListMethod · 0.85
RenderMethod · 0.85
NavScoreItemMethod · 0.85
NavUpdateMethod · 0.85
ShowMetricsWindowMethod · 0.85
DebugNodeDrawListMethod · 0.85
DebugNodeTabBarMethod · 0.85
DebugNodeWindowMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected