Find a file
Ian Douglas Scott f29f6d3b65 Make DmabufBuilder::add_plane() take an OwnedFd
Converting an arbitrary `RawFd` to an `OwnedFd` in a safe function is
unsound. This provides a more correct API.
2022-09-26 12:45:34 -07:00
.github/workflows ci: Enforce 1.59 MSRV 2022-09-23 12:05:41 +02:00
anvil Merge pull request #752 from cmeissl/fix/egl_buffer_segfault 2022-09-21 14:12:16 +02:00
examples update wayland-rs to 0.30.0-beta.10 2022-09-19 11:48:43 +02:00
smallvil ci: Enforce 1.59 MSRV 2022-09-23 12:05:41 +02:00
src Make DmabufBuilder::add_plane() take an OwnedFd 2022-09-26 12:45:34 -07:00
wlcs_anvil update wayland-rs to 0.30.0-beta.10 2022-09-19 11:48:43 +02:00
.gitignore Fix travis build with updated libinput 2017-12-15 19:22:40 +01:00
.rustfmt.toml Remove unstable rustfmt options 2018-04-17 17:48:20 +02:00
build.rs egl: Add render_node query to EGLDevice 2022-03-14 16:13:22 +01:00
Cargo.toml update wayland-rs to 0.30.0-beta.10 2022-09-19 11:48:43 +02:00
CHANGELOG.md Rewrite for wayland-rs 0.30 2022-07-31 23:28:55 +08:00
clippy.toml Clippy fixes 2022-08-12 12:11:40 +02:00
compile_wlcs.sh wlcs_anvil: Update for 0.30 2022-06-12 21:00:26 +00:00
CONTRIBUTING.md Fixed typo (#737) 2022-09-04 23:07:57 +02:00
doc_index.html travis: add a redirect doc homepage 2017-10-01 20:34:24 +02:00
LICENSE.txt Update names 2022-06-23 16:46:15 +00:00
README.md Update chat details on Readme 2022-06-16 20:52:42 +02:00

Smithay

Crates.io docs.rs Build Status Join the chat on matrix at #smithay:matrix.org Join the chat via bridge on #smithay on libera.chat

A smithy for rusty wayland compositors

Goals

Smithay aims to provide building blocks to create wayland compositors in Rust. While not being a full-blown compositor, it'll provide objects and interfaces implementing common functionalities that pretty much any compositor will need, in a generic fashion.

Also:

  • Documented: Smithay strives to maintain a clear and detailed documentation of its API and its functionalities. Compiled documentations are available on docs.rs for released versions, and here for the master branch.
  • Safety: Smithay will target to be safe to use, because Rust.
  • Modularity: Smithay is not a framework, and will not be constraining. If there is a part you don't want to use, you should not be forced to use it.
  • High-level: You should be able to not have to worry about gory low-level stuff (but Smithay won't stop you if you really want to dive into it).

Anvil

Like others, Smithay as a compositor library has its own sample compositor: anvil.

You can run it with cargo after having cloned this repository:

cd anvil;

cargo run -- --{backend}

The currently available backends are:

  • --x11: start anvil as an X11 client. This allows you to run the compositor inside an X11 session or any compositor supporting XWayland. Should be preferred over the winit backend where possible.
  • --winit: start anvil as a Winit application. This allows you to run it inside of an other X11 or Wayland session.
  • --tty-udev: start anvil in a tty with udev support. This is the "traditional" launch of a Wayland compositor. Note that this requires you to start anvil as root if your system does not have logind available.

Contact us

If you have questions or want to discuss the project with us, our main chatroom is on Matrix: #smithay:matrix.org. You can also join it via an IRC bridge, on #smithay on libera.chat.