Bug 1404232 - Add mGL->MakeCurrent() calling in SetGLContext() r=jrmuizel

This commit is contained in:
sotaro 2017-10-19 13:03:28 +09:00
Родитель 1bf385dce6
Коммит 2c90b0f880
2 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -65,6 +65,7 @@ RenderDXGITextureHostOGL::SetGLContext(gl::GLContext* aContext)
// Release the texture handle in the previous gl context.
DeleteTextureHandle();
mGL = aContext;
mGL->MakeCurrent();
}
}
@ -291,6 +292,7 @@ RenderDXGIYCbCrTextureHostOGL::SetGLContext(gl::GLContext* aContext)
// Release the texture handle in the previous gl context.
DeleteTextureHandle();
mGL = aContext;
mGL->MakeCurrent();
}
}

Просмотреть файл

@ -105,6 +105,7 @@ RenderMacIOSurfaceTextureHostOGL::SetGLContext(gl::GLContext* aContext)
// release the texture handle in the previous gl context
DeleteTextureHandle();
mGL = aContext;
mGL->MakeCurrent();
}
}