Browse Source

fixed build error on OSX from new WM code

steve 10 năm trước cách đây
mục cha
commit
a6f6bd85f9
2 tập tin đã thay đổi với 6 bổ sung0 xóa
  1. 2 0
      platform/osx/os_osx.h
  2. 4 0
      platform/osx/os_osx.mm

+ 2 - 0
platform/osx/os_osx.h

@@ -133,6 +133,8 @@ public:
 	virtual Point2 get_mouse_pos() const;
 	virtual int get_mouse_button_state() const;
 	virtual void set_window_title(const String& p_title);
+	
+	virtual Size2 get_window_size() const;
 
 	virtual void set_icon(const Image& p_icon);
 

+ 4 - 0
platform/osx/os_osx.mm

@@ -1245,6 +1245,10 @@ void OS_OSX::get_fullscreen_mode_list(List<VideoMode> *p_list,int p_screen) cons
 
 }
 
+Size2 OS_OSX::get_window_size() const {
+	return Vector2(current_videomode.width, current_videomode.height);
+}
+
 void OS_OSX::move_window_to_foreground() {
 
 	[window_object orderFrontRegardless];