-
Notifications
You must be signed in to change notification settings - Fork 52
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
Wayland support? #6
Comments
Given Fenster's API, it'll be quite tough to have HiDPI support for Wayland. The main issue is that the client expects a fixed viewport with an image buffer of the same size, so we can't let the user have a larger image buffer for scaling. If we add a new API, the user will have to worry a lot more when blitting images onto Fenster. I think Wayland support can still be done with something like shared buffers though. It'll just be a lot more code, since Wayland's client API is a lot more code than X's higher-level libraries. We'll also need something like libdecoration added on top, probably. |
AFAICT there's no X11/Windows/MacOS HiDPI support either, so I think that there should be no problem.
Yup, they would work fine in this application.
That's my biggest concern too, there are few shortcuts I can think of.
I'm not really fond of libdecoration and I'd really like to avoid such an extra dependency if possible. Perhaps we could make some "inline" decoration drawing routine? I know that it would make the header potentially bigger, but that would be better than a whole (extra) dynamically linked library IMO. |
That's true, however being a Wayland app, I think it should at least have some ability to render without being blurry on modern computers. Perhaps just using nearest-neighbor integer scaling would still yield better results than letting the compositor scale up.
That's fair. Given the simplicity of this library, I think we can get away with rendering a blank deco only once with basic buttons. |
Considering that this library implies being akin to old school stuff ("Borland BGI or drawing things in QBASIC or
Great. Although, damn, just remembered that we should also handle mouse window dragging/resizing. It shouldn't be hard at all thanks to stuff like xdg_toplevel::resize, just wanted to point that out. |
I don't think so, but afaik, most compositors use whatever OGL has built-in, which is bilinear filtering. |
@diamondburned I can think of a few ways of fixing it in one way or another, but this is IMO secondary stuff (despite being certainly unpleasant). We could see it later if this feature is wanted and once it's started (it'll take some time from my part as I'm currently very busy due to end-of-term school stuff). |
Hi! This looks like a really nice project! I wonder if it would make sense to support Wayland here. I could give a hand if you're interested.
The text was updated successfully, but these errors were encountered: