Excluindo um contexto de renderização
O exemplo de código a seguir mostra como excluir um contexto de renderização OpenGL quando uma janela OpenGL é fechada. É uma continuação do cenário usado em Criando um contexto de renderização e tornando-o atual.
// a window is about to be destroyed
case WM_DESTROY:
{
// local variables
HGLRC hglrc;
HDC hdc ;
// if the thread has a current rendering context ...
if(hglrc = wglGetCurrentContext()) {
// obtain its associated device context
hdc = wglGetCurrentDC() ;
// make the rendering context not current
wglMakeCurrent(NULL, NULL) ;
// release the device context
ReleaseDC (hwnd, hdc) ;
// delete the rendering context
wglDeleteContext(hglrc);
}