Update OGLGraphicsImpl.h
Added function GetGLContext().
This allows us to switch multiple contexts like so:
auto graphics = _context->GetSubsystem<Urho3D::Graphics>();
auto graphicsImpl = graphics->GetImpl();
SDL_GL_MakeCurrent(graphicsImpl->GetWindow(), graphicsImpl->GetGLContext());
_engine->RunFrame();