Skip to content
Snippets Groups Projects

opengl32: Add WGL_DOUBLE_BUFFER_ARB to the explicit sort list.

Open Aida Jonikienė requested to merge DodoGTA/wine:mr/opengl32-tlopo into master
1 unresolved thread

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

Members who can merge are allowed to add commits.

Merge request pipeline #31937 failed

Merge request pipeline failed for b9a896a0

Merge request contains no changes

Use merge requests to propose changes to your project and discuss them with your team. To make changes, use the Code dropdown list above, then test them with CI/CD before merging.

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • Aida Jonikienė requested review from @afrantzis and @rbernon

    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)

    • Please register or sign in to reply
Please register or sign in to reply
Loading