14 Jun
2024
14 Jun
'24
9:29 a.m.
Rémi Bernon (@rbernon) commented about dlls/opengl32/wgl.c:
return num_onscreen_formats; }
+/*********************************************************************** + * wglGetPixelFormatAttribivARB (OPENGL32.@) + */ +BOOL WINAPI wglGetPixelFormatAttribivARB( HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, + const int *piAttributes, int *piValues ) +{
Let's cleanup the parameter names. ```suggestion:-2+0 BOOL WINAPI wglGetPixelFormatAttribivARB( HDC hdc, int index, int plane, UINT count, const int *attributes, int *values ) { ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/5844#note_73172