mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-03 02:10:24 +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
c5f6ff9d3e
commit
cbee0572ed
2 changed files with 2 additions and 2 deletions
|
|
@ -454,7 +454,7 @@
|
|||
"description": "wgl: support GL 4.6",
|
||||
"nominated": true,
|
||||
"nomination_type": 0,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"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