2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 23:47:43 +00:00

DPI switching test

This commit is contained in:
Jack Andersen
2015-12-07 18:27:35 -10:00
parent ae4fe6cb98
commit e4478c9ab3
3 changed files with 69 additions and 18 deletions

View File

@@ -15,6 +15,9 @@ class ViewManager : Specter::IViewManager
std::unique_ptr<boo::IWindow> m_mainWindow;
std::unique_ptr<Specter::RootView> m_rootView;
Specter::Space* m_space1;
Specter::Space* m_space2;
HECL::CVar* m_cvPixelFactor;
HECL::CVar* m_test1;
HECL::CVar* m_test2;
@@ -24,6 +27,9 @@ public:
ViewManager(HECL::Runtime::FileStoreManager& fileMgr, HECL::CVarManager& cvarMgr)
: m_cvarManager(cvarMgr), m_fontCache(fileMgr) {}
Specter::RootView& rootView() const {return *m_rootView;}
void ResetResources();
void init(boo::IApplication* app);
bool proc();
void stop();