summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bgfx/src/glcontext_ppapi.cpp
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/bgfx/src/glcontext_ppapi.cpp')
-rw-r--r--3rdparty/bgfx/src/glcontext_ppapi.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/3rdparty/bgfx/src/glcontext_ppapi.cpp b/3rdparty/bgfx/src/glcontext_ppapi.cpp
index 3910e7a13ee..f61244dbd38 100644
--- a/3rdparty/bgfx/src/glcontext_ppapi.cpp
+++ b/3rdparty/bgfx/src/glcontext_ppapi.cpp
@@ -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()