diff options
author | Juan Linietsky <reduzio@gmail.com> | 2017-11-13 13:40:07 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2017-11-13 13:40:07 -0300 |
commit | 2e3a1caa069c3eddfbf0b890bff7f7d85925b476 (patch) | |
tree | f4187166387937cae6ef582b70ad13b7749bffb3 /platform | |
parent | 65cc56c35da357ac7799ed9616aba4898f17f232 (diff) |
Disable OpenGL warnings unless running with -v, closes #7171
Diffstat (limited to 'platform')
-rw-r--r-- | platform/windows/context_gl_win.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/windows/context_gl_win.cpp b/platform/windows/context_gl_win.cpp index 64b6d202a1..8571f0dc65 100644 --- a/platform/windows/context_gl_win.cpp +++ b/platform/windows/context_gl_win.cpp @@ -165,7 +165,7 @@ Error ContextGL_Win::initialize() { WGL_CONTEXT_MAJOR_VERSION_ARB, 3, //we want a 3.3 context WGL_CONTEXT_MINOR_VERSION_ARB, 3, //and it shall be forward compatible so that we can only use up to date functionality - WGL_CONTEXT_FLAGS_ARB, WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB | _WGL_CONTEXT_DEBUG_BIT_ARB, + WGL_CONTEXT_FLAGS_ARB, WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB /*| _WGL_CONTEXT_DEBUG_BIT_ARB*/, 0 }; //zero indicates the end of the array |