Window resizing stability fixes

This commit is contained in:
Jack Andersen
2015-11-16 20:41:32 -10:00
parent 49da287791
commit 4d133edd2c
7 changed files with 83 additions and 21 deletions

View File

@@ -72,6 +72,11 @@ public:
return nullptr;
}
IGraphicsDataFactory* getMainContextDataFactory()
{
return nullptr;
}
IGraphicsDataFactory* getLoadContextDataFactory()
{
return nullptr;
@@ -196,6 +201,11 @@ struct WindowWayland : IWindow
return m_gfxCtx.getDataFactory();
}
IGraphicsDataFactory* getMainContextDataFactory()
{
return m_gfxCtx.getMainContextDataFactory();
}
IGraphicsDataFactory* getLoadContextDataFactory()
{
return m_gfxCtx.getLoadContextDataFactory();