| 18 | } |
| 19 | |
| 20 | Window::Ptr Window::Create( char style ) { |
| 21 | Window::Ptr window( new Window( style ) ); |
| 22 | |
| 23 | window->RequestResize(); |
| 24 | |
| 25 | return window; |
| 26 | } |
| 27 | |
| 28 | std::unique_ptr<RenderQueue> Window::InvalidateImpl() const { |
| 29 | if( GetChild() ) { |
nothing calls this directly
no test coverage detected