mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2025-06-02 17:51:04 +00:00
Merge branch 'master' into glew and fixed a crash on Intel HD drivers
This commit is contained in:
parent
aefa4ac6e3
commit
fe22638fdd
3 changed files with 5 additions and 3 deletions
|
@ -386,7 +386,7 @@ static void R_CheckPortableExtensions()
|
|||
glConfig.occlusionQueryAvailable = GLEW_ARB_occlusion_query != 0;
|
||||
|
||||
// GL_ARB_timer_query
|
||||
glConfig.timerQueryAvailable = GLEW_ARB_timer_query != 0 || GLEW_EXT_timer_query != 0;
|
||||
glConfig.timerQueryAvailable = ( GLEW_ARB_timer_query != 0 || GLEW_EXT_timer_query != 0 ) && ( glConfig.vendor != VENDOR_INTEL || r_skipIntelWorkarounds.GetBool() );
|
||||
|
||||
// GL_ARB_debug_output
|
||||
glConfig.debugOutputAvailable = GLEW_ARB_debug_output != 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue