-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use seat interface version 5 #235
Comments
https://github.com/Cloudef/wlc/blob/master/src/compositor/seat/seat.c#L95 Maybe for starters change the 4 there to 5 and see what explodes. |
Thanks for the start! I ended up changing https://github.com/Cloudef/wlc/blob/master/src/compositor/seat/seat.c#L323 instead, because I think this actually changes the version instead of just the expected version. Then I got... somewhere? When I tried running sway against my compiled libwlc (with LD_LIBRARY_PATH) I was getting the same seats version assertion error, so I must be doing something wrong there. However, I was able to get a new error if I try to run winit in the example WM in the wlc source.
..which if I follow the back trace takes me to
It is the second:
That is failing now. I have plenty of available memory, so I'm afriad the "Cannot allocate memory part" is a red herring. Going to try and dig into this more tomorrow, at a loss for the moment. |
You most likely need to change the binds too, not just global version. Use weston-info to confirm what versions are shown. WAYLAND_DEBUG=1 can be useful as well. |
Hi, I'm the person who wrote this code in winit. The major addition of version 5 of wl_seat actually comes from wl_pointer : the handling of pointer events has changed a lot with the addition of these events (as well as a few enums to support them):
also, this request has been added
|
Thank you so, so, so much @vberger. I couldn't find that information anywhere - I was able to find that they added wl_seat::release, but that's it! I'm still working on this, but with my level of experience and ability it will take awhile before it goes anywhere :) if someone else wanted to do this work, please don't let me stop you. |
Toyed around with this with my fork, got it to run the examples in conrod, but all of the winit examples failed to launch anything. However I noticed that the winit examples didn't work in Weston, so perhaps that's a different problem... I also noticed that the cursor disappears in the conrod examples. At first I thought that was a problem on our side, but it seems it doesn't set the cursor at all. On Weston it just uses whatever was last in the cursor buffer. E.g, if you move the cursor from the edge of a re-sizable window right into the example window space it keeps the "Resizing" look for the cursor. This is certainly not a complete implementation of all the changes in the protocol, but I'm just happy I got the conrod examples to work in Way Cooler :) |
Yes, that's a known issue from these. The glutin examples should work though. (Basically, as the winit examples do not draw any content in the surfaces, they are never displayed and thus don't receive any events and the event loop gets stuck). Regarding cursor issues, if conrod uses winit, it's also possible that https://github.com/vberger/wayland-window (which handles cursor changes on decorations) has some bugs on its side, too. |
Any upgrade about wlc with seat v5? |
This is unlikely to be completed as wlroots supports seat v5 and we are sunsetting wlc. |
It is my understanding that currently wlc supports seats version 4 (wlc code). I have encountered in the wild some wayland windowing code that requires seats version 5 (winit code).
It is unclear to me what exactly was added in seats version 5... I can find absolutely no documentation on this. This is the only potential I could find: wayland example code (Which looks like a related function is already defined in wlc? So maybe that's not relevant, but I really have no idea.)
I wouldn't mind trying to take this on myself, but I would need someone to give me some guidance as I have no idea where to begin.
Thanks for reading!
The text was updated successfully, but these errors were encountered: