mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-22 06:20:22 +01:00
wgl: support GL 4.6
somehow we never supported anything above 4.5?
cc: mesa-stable
Reviewed-by: Jesse Natalie <jenatali@microsoft.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16085>
(cherry picked from commit f8f5b5455a)
This commit is contained in:
parent
15b40c033d
commit
149694a52e
2 changed files with 2 additions and 2 deletions
|
|
@ -156,7 +156,7 @@
|
|||
"description": "wgl: support GL 4.6",
|
||||
"nominated": true,
|
||||
"nomination_type": 0,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"because_sha": null
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -133,7 +133,7 @@ wglCreateContextAttribsARB(HDC hDC, HGLRC hShareContext, const int *attribList)
|
|||
((majorVersion == 1 && minorVersion > 5) ||
|
||||
(majorVersion == 2 && minorVersion > 1) ||
|
||||
(majorVersion == 3 && minorVersion > 3) ||
|
||||
(majorVersion == 4 && minorVersion > 5) ||
|
||||
(majorVersion == 4 && minorVersion > 6) ||
|
||||
majorVersion > 4)) ||
|
||||
(profileMask == WGL_CONTEXT_ES_PROFILE_BIT_EXT &&
|
||||
((majorVersion == 1 && minorVersion > 1) ||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue