igGetWindowSize() 개인적인 메소드

private igGetWindowSize ( Vector2 &@out ) : void
@out Vector2
리턴 void
예제 #1
0
        public static ImVec2 GetWindowSize()
        {
            ImVec2 size;

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

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