2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 22:27:43 +00:00

Updated submodules

This commit is contained in:
Jack Andersen
2015-12-01 17:08:38 -10:00
parent 5424494f7e
commit cefde1ca0c
3 changed files with 5 additions and 5 deletions

View File

@@ -12,7 +12,7 @@ struct Application : boo::IApplicationCallback
HECL::Runtime::FileStoreManager m_fileMgr; HECL::Runtime::FileStoreManager m_fileMgr;
Specter::FontCache m_fontCache; Specter::FontCache m_fontCache;
boo::IWindow* m_mainWindow; boo::IWindow* m_mainWindow;
Specter::ViewSystem m_viewSystem; Specter::ViewResources m_viewResources;
std::unique_ptr<Specter::RootView> m_rootView; std::unique_ptr<Specter::RootView> m_rootView;
Retro::CVarManager m_cvarManager; Retro::CVarManager m_cvarManager;
Zeus::CColor m_clearColor; Zeus::CColor m_clearColor;
@@ -41,8 +41,8 @@ struct Application : boo::IApplicationCallback
tmp->addListener(listen); tmp->addListener(listen);
boo::IGraphicsDataFactory* gf = m_mainWindow->getMainContextDataFactory(); boo::IGraphicsDataFactory* gf = m_mainWindow->getMainContextDataFactory();
m_viewSystem.init(gf, &m_fontCache); m_viewResources.init(gf, &m_fontCache, m_mainWindow->getVirtualPixelFactor());
m_rootView.reset(new Specter::RootView(m_viewSystem, m_mainWindow)); m_rootView.reset(new Specter::RootView(m_viewResources, m_mainWindow));
m_mainWindow->setWaitCursor(false); m_mainWindow->setWaitCursor(false);
boo::IGraphicsCommandQueue* gfxQ = m_mainWindow->getCommandQueue(); boo::IGraphicsCommandQueue* gfxQ = m_mainWindow->getCommandQueue();

2
hecl

Submodule hecl updated: 7f189da063...5193310ce4