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