Lines Matching refs:fWindow
27 std::unique_ptr<sk_app::Window> fWindow;
31 EditorApplication(std::unique_ptr<sk_app::Window> win) : fWindow(std::move(win)) {}
34 fWindow->attach(sk_app::Window::kRaster_BackendType);
36 fLayer = Editor::MakeDemo(fWindow->width(), fWindow->height());
38 fWindow->pushLayer(fLayer.get());
39 fWindow->setTitle("Editor");
41 fLayer->onResize(fWindow->width(), fWindow->height());
42 fWindow->show();
45 ~EditorApplication() override { fWindow->detach(); }
53 fWindow->inval();