diff options
author | 2016-11-10 18:58:22 -0500 | |
---|---|---|
committer | 2016-11-10 18:58:22 -0500 | |
commit | 477e47ee5f6c52df72b1a98a4ee472e6842a697c (patch) | |
tree | 87a918aaef85c56249d4dbab1697f73c9f25f8ce /src/osd/uwp/window.h | |
parent | bcabf45f0875833a1c3253b513d9862c01d0026b (diff) |
More UWP work - the UI actually renders (nw)
Diffstat (limited to 'src/osd/uwp/window.h')
-rw-r--r-- | src/osd/uwp/window.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/osd/uwp/window.h b/src/osd/uwp/window.h index fe8d2a47379..dcff102bda2 100644 --- a/src/osd/uwp/window.h +++ b/src/osd/uwp/window.h @@ -60,7 +60,8 @@ public: virtual osd_dim get_size() override { - throw ref new Platform::NotImplementedException(); + auto bounds = uwp_window()->Bounds; + return osd_dim(bounds.Width, bounds.Height); } bool win_has_menu() override @@ -123,6 +124,7 @@ public: private: int complete_create(); + void draw_video_contents(int update); void set_starting_view(int index, const char *defview, const char *view); int wnd_extra_width(); int wnd_extra_height(); |