| 26 | } |
| 27 | |
| 28 | void CoreWindow::PushLayer(const Ref<Layer>& layer) { |
| 29 | m_layer_stack_ptr->PushLayer(layer); |
| 30 | } |
| 31 | |
| 32 | void CoreWindow::PushOverlayLayer(Ref<Layer>&& layer) { |
| 33 | m_layer_stack_ptr->PushOverlayLayer(layer); |
nothing calls this directly
no outgoing calls
no test coverage detected