mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-12 07:34:50 +00:00
- added a NULL check for GL resource context in init code.
This commit is contained in:
parent
e14756e810
commit
a93cb0bfab
1 changed files with 13 additions and 10 deletions
|
@ -799,6 +799,8 @@ bool Win32GLVideo::InitHardware (HWND Window, int multisample)
|
|||
return false;
|
||||
}
|
||||
|
||||
if (m_hRC != NULL)
|
||||
{
|
||||
wglMakeCurrent(m_hDC, m_hRC);
|
||||
|
||||
// we can only use core profile contexts if GL_ARB_buffer_storage is supported or GL version is >= 4.4
|
||||
|
@ -812,6 +814,7 @@ bool Win32GLVideo::InitHardware (HWND Window, int multisample)
|
|||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue