Re: [PATCH v3 0/2] MR3111: opengl32: treat the PFD_SUPPORT_GDI flag to ChoosePixelFormat() as mandatory
23 Jun
2023
23 Jun
'23
6:48 p.m.
Davide Beatrici (@davidebeatrici) commented about dlls/opengl32/wgl.c:
continue; }
+ if ((ppfd->dwFlags & PFD_SUPPORT_GDI) && !(format.dwFlags & PFD_SUPPORT_GDI))
For consistency: ```suggestion:-0+0 if ((ppfd->dwFlags & PFD_SUPPORT_GDI) != (format.dwFlags & PFD_SUPPORT_GDI)) ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/3111#note_36671
904
Age (days ago)
904
Last active (days ago)
0 comments
1 participants
participants (1)
-
Davide Beatrici (@davidebeatrici)