mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-02-18 21:13:02 +01:00
Pass all reset flags to glcontext.
This commit is contained in:
@@ -38,7 +38,7 @@ namespace bgfx { namespace gl
|
||||
|
||||
bool setInterfaces(PP_Instance _instance, const PPB_Instance* _instInterface, const PPB_Graphics3D* _graphicsInterface, PostSwapBuffersFn _postSwapBuffers);
|
||||
|
||||
void resize(uint32_t _width, uint32_t _height, bool /*_vsync*/)
|
||||
void resize(uint32_t _width, uint32_t _height, uint32_t /*_flags*/)
|
||||
{
|
||||
m_graphicsInterface->ResizeBuffers(m_context, _width, _height);
|
||||
}
|
||||
@@ -147,10 +147,10 @@ namespace bgfx { namespace gl
|
||||
{
|
||||
}
|
||||
|
||||
void GlContext::resize(uint32_t _width, uint32_t _height, bool _vsync)
|
||||
void GlContext::resize(uint32_t _width, uint32_t _height, uint32_t _flags)
|
||||
{
|
||||
s_ppapi.m_forceSwap = false;
|
||||
s_ppapi.resize(_width, _height, _vsync);
|
||||
s_ppapi.resize(_width, _height, _flags);
|
||||
}
|
||||
|
||||
bool GlContext::isSwapChainSupported()
|
||||
|
||||
Reference in New Issue
Block a user