When resizing an X11 window with OpenGL content, the image becomes garbled and certain parts of the window, usually at the parts that wasn’t originally part of the initial framebuffer.

I couldn’t find any documentation on if I supposed to call some extra functions when the window is being resized or not. I otherwise process that even as a system event, so it can be further processed by the program using my API.

  • Toes♀@ani.social
    link
    fedilink
    arrow-up
    2
    ·
    19 days ago

    This might be an issue with the window manager more so than x11 itself. However, I would suggest trying it with VLC in OpenGL to confirm.

    Are you running the recommended drivers for your GPU?

    If VLC doesn’t do it, check to see how their code differs from yours perhaps?

    • ZILtoid1991@lemmy.worldOP
      link
      fedilink
      arrow-up
      1
      ·
      19 days ago

      I have tge same issue on at least two working distros, and had similar issues on previous ones I used. Other programs don’t have this issue, only mine, when resizing. I don’t know if I should call some extra functions, since most documentation I could get is pretty much “just use some existing solution”.

      • orclev@lemmy.world
        link
        fedilink
        arrow-up
        1
        ·
        19 days ago

        This is a wild guess but you probably need to rerender the framebuffer when you get the resize event. I’d expect most libraries/frameworks/engines would take care of that for you, but if you’ve rolled your own using the base X11 and OpenGL libraries you might need to set that up. X11 has a lot of strange quirks due to its network centric design.