igGetWindowSize() private method

private igGetWindowSize ( Vector2 &@out ) : void
@out Vector2
return void
Example #1
0
        public static ImVec2 GetWindowSize()
        {
            ImVec2 size;

            ImGuiNative.igGetWindowSize(out size);
            return(size);
        }
Example #2
0
        public static Vector2 GetWindowSize()
        {
            Vector2 size;

            ImGuiNative.igGetWindowSize(out size);
            return(size);
        }
Example #3
0
 public static Vector2 GetWindowSize()
 {
     System.Numerics.Vector2 size;
     ImGuiNative.igGetWindowSize(out size);
     return(new Vector2(size.X, size.Y));
 }