opengl32: Add WGL_DOUBLE_BUFFER_ARB to the explicit sort list.
The Legend of Pirates Online expects the formats without WGL_DOUBLE_BUFFER_ARB to be listed first in wglChoosePixelFormatARB() (otherwise it goes into a special wglBindTexImageARB() path which causes blank rendering on both winex11 and winewayland) which was the old winex11 behavior that this change now matches.
Fixes: 272c55ac ("opengl32: Add default implementation for wglChoosePixelFormatARB.")
Merge request reports
Activity
requested review from @afrantzis and @rbernon
This isn't what native AMD drivers seem to be doing, see https://testbot.winehq.org/JobDetails.pl?Key=148500&f101=exe64.report&f102=exe64.report#k102. It would be interesting to write tests doing exactly the same wglChoosePixelFormatARB query as the game and see what is supposed to be returned.
The game initially calls
wglChoosePixelFormatARB()
with a non-NULL HDC, an integer attribute list of{WGL_SUPPORT_OPENGL_ARB, TRUE, WGL_PIXEL_TYPE_ARB, WGL_TYPE_RGBA_ARB, 0}
, an empty float attribute list and max format count of 1024 according to apitrace (in later calls it uses integer attributes of{WGL_SUPPORT_OPENGL_ARB, TRUE, WGL_PIXEL_TYPE_ARB, WGL_TYPE_RGBA_ARB, WGL_DRAW_TO_PBUFFER_ARB, TRUE, WGL_BIND_TO_TEXTURE_RGB_ARB, TRUE, 0}
)I see the game is picking a double-buffered pixel format without my MR and a non-double-buffered one with it applied too
I'll try to add tests for this a bit later
Edited by Aida JonikienėI realized some time ago that this game is using
wglBind/ReleaseTexImageARB()
in the double-buffered pixel format path (which seem to be semi-broken functions on both winex11 and winewayland)I guess I should turn this MR into a potential fix for those function implementations then (which is more likely to be merged than this workaround)