mirror of https://github.com/AxioDL/metaforce.git
Update submodules
This commit is contained in:
parent
0e69be17d3
commit
5424494f7e
|
@ -32,6 +32,7 @@ struct Application : boo::IApplicationCallback
|
|||
int appMain(boo::IApplication* app)
|
||||
{
|
||||
m_mainWindow = app->newWindow(_S("RUDE"));
|
||||
m_mainWindow->showWindow();
|
||||
m_mainWindow->setWaitCursor(true);
|
||||
m_cvarManager.serialize();
|
||||
Retro::CVar* tmp = m_cvarManager.findCVar("r_clearcolor");
|
||||
|
@ -43,7 +44,6 @@ struct Application : boo::IApplicationCallback
|
|||
m_viewSystem.init(gf, &m_fontCache);
|
||||
m_rootView.reset(new Specter::RootView(m_viewSystem, m_mainWindow));
|
||||
|
||||
m_mainWindow->showWindow();
|
||||
m_mainWindow->setWaitCursor(false);
|
||||
boo::IGraphicsCommandQueue* gfxQ = m_mainWindow->getCommandQueue();
|
||||
while (m_running)
|
||||
|
@ -51,10 +51,10 @@ struct Application : boo::IApplicationCallback
|
|||
if (m_rootView->isDestroyed())
|
||||
break;
|
||||
m_cvarManager.update();
|
||||
m_mainWindow->waitForRetrace();
|
||||
m_rootView->dispatchEvents();
|
||||
m_rootView->draw(gfxQ);
|
||||
gfxQ->flushBufferUpdates();
|
||||
gfxQ->execute();
|
||||
m_mainWindow->waitForRetrace();
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
|
2
hecl
2
hecl
|
@ -1 +1 @@
|
|||
Subproject commit 2f3a4839349e76673a90d115b13e1dbfdafa121d
|
||||
Subproject commit 7f189da063d3475a3980d19be65b18aa228e175c
|
|
@ -1 +1 @@
|
|||
Subproject commit 026ea66e8da710014d855129a20e5046e0dfc108
|
||||
Subproject commit 3a0d803099b4ad4281491db7f4673cc0c22f333d
|
Loading…
Reference in New Issue