i509VCB
d00197052c
x11: add option to make extensions optional
2021-11-22 15:26:52 +01:00
Christian Duerr
0d2c3acdc7
Add debug assertion
2021-11-22 15:25:47 +01:00
Christian Duerr
d46be20d6e
Add SubAssign for Size
2021-11-22 15:25:47 +01:00
Victor Brekenfeld
0ea8899dcf
Merge pull request #409 from Smithay/drm/non-alpha-primary
...
gbm: use Xrgb8888, if alpha variant is not available
2021-11-16 09:05:39 +01:00
Victor Brekenfeld
cf6f7a0726
gbm: use Xrgb8888, if alpha variant is not available
2021-11-04 19:13:57 +01:00
i509VCB
8ca5d1f301
input: remove `InputBackend::dispatch_new_events`
2021-10-28 15:37:02 -05:00
i509VCB
1a1fe01349
docs: include x11rb in generation
2021-10-28 16:39:52 +02:00
Victor Brekenfeld
b890bfd768
Merge pull request #365 from i509VCB/mouse-f/b
2021-10-27 20:03:13 +02:00
i509VCB
3283010d2c
Add Forward/Back mouse buttons
2021-10-27 12:23:12 -05:00
i509VCB
e1400a1926
Mention where keyboard key code constants may be found
2021-10-27 12:23:07 -05:00
Poly
63f9a713ce
Clippy fixes
2021-10-27 14:18:52 +02:00
Poly
67ed81a00c
Anvil XDG Decoration
2021-10-27 14:18:52 +02:00
Poly
10aee60b87
wayland.xdg-decor: Implement XDG Decoration protocol
2021-10-27 14:18:52 +02:00
i509VCB
77c970e197
winit: rework around `WinitEvent` vs `InputEvent<Special = WinitEvent>`
2021-10-27 14:16:19 +02:00
Victor Berger
d5f4094cc7
ci: update doc-generating command
2021-10-27 14:15:19 +02:00
Victor Brekenfeld
3dde8d70ef
Update to input-rs 0.7
2021-10-23 22:49:32 +02:00
Victor Brekenfeld
14a4bb25db
Merge pull request #402 from Smithay/fix/trailing_semicolon
...
Fix trailing_semicolon on egl macro
2021-10-23 15:58:19 +02:00
Victor Brekenfeld
2aedeead7d
Fix clippy needless_return
2021-10-23 15:34:50 +02:00
Victor Brekenfeld
af8863578e
Fix trailing_semicolon on egl macro
2021-10-23 15:24:55 +02:00
Victor Berger
121014a9eb
compositor.cache: fix MultiCache::has()
2021-10-18 19:33:49 +02:00
Victor Brekenfeld
7ad40d3f3a
Merge pull request #371 from i509VCB/x-client
2021-10-18 18:44:51 +02:00
i509VCB
2e68cfda5a
X11 backend
2021-10-17 13:46:15 -05:00
i509VCB
953d9ce158
Implement `Hash` on some enums in `backend::input`
2021-10-17 13:46:07 -05:00
i509VCB
c8d56f1cf3
Move X11Source to smithay under`x11rb_event_source` feature
2021-10-17 13:46:07 -05:00
i509VCB
4d93805814
Add `DrmNode` to `backend::drm`.
2021-10-17 13:46:07 -05:00
i509VCB
d041e5cdf6
anvil: Derive missing `fmt::Debug`
2021-10-17 13:46:07 -05:00
Poly
d7b23c3271
Update CHANGELOG
2021-10-16 19:33:15 +02:00
Poly
8114bac8fd
Remove XDG Shell V6
2021-10-16 19:33:15 +02:00
Demi Marie Obenour
a9f1188fea
Add missing check for dead surfaces
...
Previously a pointer.leave event would be sent with a NULL target,
causing the client to disconnect.
2021-10-16 13:32:03 +02:00
i509VCB
fdaf1859b0
anvil: Pass window and output maps using dispatch data AnvilState
2021-10-16 13:14:46 +02:00
Victor Brekenfeld
60fdbaebc5
Merge pull request #398 from i509VCB/anvil/mutex-log
...
anvil: Passing `ANVIL_MUTEX_LOG` uses Mutex logging drain
2021-10-14 18:21:01 +02:00
i509VCB
f5bf204454
anvil: Passing `ANVIL_MUTEX_LOG` uses Mutex logging drain
...
fmt...
2021-10-14 10:54:43 -05:00
Victor Brekenfeld
dd6919dd5f
Merge pull request #385 from Smithay/feature/dmabuf_filter
2021-09-30 21:47:57 +02:00
Victor Brekenfeld
bafc378181
wayland/dmabuf: Allow global creation with a client filter
2021-09-30 18:37:54 +02:00
Victor Berger
3842b78979
wayland.compositor: fix leak of surface data
...
The subsurface logic holds a self-reference to the WlSurface to
track stacking orders of the children relative to the parent. This
self-reference needs be dropped during cleanup to avoid reference
cycles.
This was not the case, and caused every surface user data to be
leaked as it kept a reference to itself (and all of its children).
2021-09-28 16:30:46 +02:00
i509VCB
70c11e6c62
docs: Update calloop in CLI
...
This should hopefully fix the builds failing.
2021-09-23 10:08:39 +02:00
Victor Brekenfeld
7f0687cfc9
Merge pull request #380 from Smithay/feature/xcb_variants
2021-09-22 18:48:26 +02:00
Victor Brekenfeld
55eb73cb9e
wayland/seat: add return value to `KeyboardHandle::input`
2021-09-19 17:10:08 +02:00
Victor Brekenfeld
90dd28c910
wayland/seat: Add `KeysymHandle` to allow for keycode conversions.
...
Currently keycodes are always converted using xkbcommons
`State::key_get_one_sym` function. This may be not what the compositor
wants, e.g. if it represents keybindings with explicit modifiers.
Applying Shift in this case changes the sym, making it necessary for
the compositor to *undo* this transformation, which is hard or even
impossible and very unnecessary, when we have all the necessary
information in smithay.
Therefor this commit replaces the `Keysym` argument of the filter
closure with a `KeysymHandle`, which allows for different variants of
keysyms to be received. Modified (as previously), unmodified or even
as a raw keycode.
2021-09-17 17:12:26 +02:00
Victor Berger
d0ee7d831e
Merge pull request #367 from PolyMeilex/fix-2
...
backend.libseat: Fix dispatch double borrow
2021-08-31 10:34:24 +02:00
Poly
8967a7eb1c
Make libloading optional
2021-08-31 10:33:23 +02:00
i509VCB
b07f1af494
Implement Coordinate for all numerical types ( #372 )
...
This allows Size, Point and Rectangle to be made with any numeric type
2021-08-30 22:02:00 +02:00
Poly
4a54130ad2
CHANGELOG
2021-08-26 01:00:31 +02:00
Poly
10cab4eab9
backend.libseat: Fix dispatch double borrow
2021-08-26 01:00:31 +02:00
Victor Berger
cc48759338
Merge pull request #369 from i509VCB/anvil_render_fn
...
anvil: Split out logic for drawing layers and windows from backends
2021-08-24 14:26:22 +02:00
Victor Berger
f4ba6f5bea
Merge pull request #366 from psychon/x11-event-thread
...
Anvil: Use a dedicated X11 event thread for event reading
2021-08-24 11:31:02 +02:00
Poly
b458893cda
doc: Fix crates.io badge
2021-08-23 15:51:00 +02:00
i509VCB
5d2e601426
Fence the module I guess
2021-08-21 17:18:54 -05:00
i509VCB
e020347c6b
anvil: Split out logic for drawing layers and windows
...
At the moment also splitting our Drag and Drop requires unraveling some backend specific stuff.
2021-08-21 16:55:32 -05:00
Victor Berger
daef0a11df
Merge pull request #361 from cmeissl/feature/xdg_v3
...
support for xdg-shell v3
2021-08-15 22:50:54 +02:00