igGetWindowDrawList() private method

private igGetWindowDrawList ( ) : DrawList*
return DrawList*
Esempio n. 1
0
 public static unsafe ImDrawList GetWindowDrawList()
 {
     return(new ImDrawList(ImGuiNative.igGetWindowDrawList()));
 }
Esempio n. 2
0
 public static DrawList GetForCurrentWindow()
 {
     return(new DrawList(ImGuiNative.igGetWindowDrawList()));
 }
Esempio n. 3
0
 public static unsafe DrawList GetWindowDrawList() => new DrawList(ImGuiNative.igGetWindowDrawList());