This depends on OpenGL headers you are using. For example dglOpenGL has function wglMakeCurrent(h_Dc, h_Rc)
that alone is needed for swapping rendering display.
This makes screen come visible (call at end of each frame):
SwapBuffers(h_Dc);

.. which was created with
h_Rc:=wglCreateContext(h_Dc);