Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
4ca1fd7
Save empty backend.
richard-uk1 Dec 29, 2020
fcfee87
implement druid-shell for wayland.
richard-uk1 Dec 29, 2020
32d1e6c
Reduce the number of warnings.
richard-uk1 Apr 6, 2021
d8413e9
log -> tracing
maan2003 Aug 17, 2021
91b71a8
simulate_input
maan2003 Aug 17, 2021
696ae7d
prepare paint
maan2003 Aug 17, 2021
81cf390
green CI
maan2003 Sep 27, 2021
0662630
wayland fixes and improvements
james-lawrence Oct 27, 2021
88cf58d
wayland: share xkb with x11 backend
maan2003 Aug 18, 2021
1194bbe
decouple buffers from surface. (#2032)
james-lawrence Nov 10, 2021
3500e1e
decouple window handles from wayland id. (#2033)
james-lawrence Nov 10, 2021
104579f
remove dead/unused code. (#2035)
james-lawrence Nov 19, 2021
ba5f362
update wayland dependencies
james-lawrence Nov 20, 2021
6a9b58d
expose api for display reinitialization support.
james-lawrence Nov 20, 2021
c800f00
handle output added/removed events on eventqueue.
james-lawrence Nov 20, 2021
a90667e
formatting
james-lawrence Nov 20, 2021
2a3ca49
implement locale detection for wayland. (#2059)
james-lawrence Nov 30, 2021
89412ba
enable buffer recreation to always be allowed. (#2070)
james-lawrence Dec 3, 2021
1186cff
implement repeating keys. (#2058)
james-lawrence Dec 4, 2021
7ad66e7
attempt to create a working clipboard (#2057)
james-lawrence Dec 4, 2021
41471d7
cleanup popup implementation. (#2071)
james-lawrence Dec 5, 2021
804040e
implement screen for wayland. (#2076)
james-lawrence Dec 6, 2021
e7d7d31
wayland: CI
maan2003 Dec 7, 2021
cff899a
xkb: only include xkbcommon-x11.h if x11 feature is enabled
maan2003 Dec 7, 2021
79a0c04
No ApplicationExt on wayland
maan2003 Dec 6, 2021
1b51ace
Clippy
maan2003 Dec 7, 2021
632c8c5
additional clippy fixes.
james-lawrence Dec 7, 2021
c803df8
test fixes
james-lawrence Dec 7, 2021
6e62f5e
cleanup the output detect code.
james-lawrence Dec 8, 2021
409981d
Merge pull request #1 from james-lawrence/wayland-display-refactor
james-lawrence Dec 11, 2021
2451da9
cargo fmt
james-lawrence Dec 11, 2021
bdf6792
peer review
james-lawrence Dec 31, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
No ApplicationExt on wayland
  • Loading branch information
maan2003 authored and james-lawrence committed Dec 7, 2021
commit 79a0c045394f7d1c62fa124ec59bd39d75a98088
2 changes: 2 additions & 0 deletions druid-shell/src/platform/linux.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,7 @@ mod test {

use super::*;
use static_assertions as sa;
// TODO: impl ApplicationExt for wayland
#[cfg(not(feature = "wayland"))]
sa::assert_impl_all!(Application: ApplicationExt);
}