igGetWindowDrawList() private method

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