diff options
| author | Christian Meissl <meissl.christian@gmail.com> | 2024-01-23 20:44:47 +0100 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2024-01-25 07:49:51 +0400 |
| commit | 73f3c160b299e956402c7b5856701cc812bd250f (patch) | |
| tree | a559620edf0eca6d65ad336b5f48cf29ca485f71 /Cargo.lock | |
| parent | 5f99eb13ab3e26f860a858b52129ce6227441e35 (diff) | |
| download | niri-73f3c160b299e956402c7b5856701cc812bd250f.tar.gz niri-73f3c160b299e956402c7b5856701cc812bd250f.tar.bz2 niri-73f3c160b299e956402c7b5856701cc812bd250f.zip | |
use pixman for cursor plane rendering
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -2123,6 +2123,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" [[package]] +name = "paste" +version = "1.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" + +[[package]] name = "peeking_take_while" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -2186,6 +2192,24 @@ dependencies = [ ] [[package]] +name = "pixman" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d24a24da0bec14f4e43a495c1837a3c358b87532e7fe66bd75c348b89f0451b6" +dependencies = [ + "drm-fourcc", + "paste", + "pixman-sys", + "thiserror", +] + +[[package]] +name = "pixman-sys" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1a0483e89e81d7915defe83c51f23f6800594d64f6f4a21253ce87fd8444ada" + +[[package]] name = "pkg-config" version = "0.3.29" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -2714,6 +2738,7 @@ dependencies = [ "libloading", "libseat", "once_cell", + "pixman", "pkg-config", "profiling", "rand", |
