| 18 | } |
| 19 | |
| 20 | wf::Rect BaseXamlPageHost::ScaleRect(wf::Rect rect, float scale) |
| 21 | { |
| 22 | return { |
| 23 | rect.X * scale, |
| 24 | rect.Y * scale, |
| 25 | rect.Width * scale, |
| 26 | rect.Height * scale |
| 27 | }; |
| 28 | } |
| 29 | |
| 30 | HMONITOR BaseXamlPageHost::GetInitialMonitor(POINT &cursor, xaml_startup_position position) |
| 31 | { |
nothing calls this directly
no outgoing calls
no test coverage detected