diff options
author | Hideyuki Nagase <hideyukn@microsoft.com> | 2022-04-29 07:22:41 -0500 |
---|---|---|
committer | Derek Foreman <derek.foreman@collabora.com> | 2022-05-19 14:31:59 +0000 |
commit | 3bdc29b9342bd0884c338ad51e317214e405c945 (patch) | |
tree | 32bd28ac98e22d61fd1403a8862be5d257fe66d1 /meson_options.txt | |
parent | e884e7c7b86a294afd09c25377f0a809c6bc7a42 (diff) |
rdp: Add cross thread work queues
FreeRDP has some features that start new threads and run
callback functions in them.
We need a way to punt work from these threads back to the
compositor thread.
Co-authored-by: Steve Pronovost <spronovo@microsoft.com>
Co-authored-by: Brenton DeGeer <brdegeer@microsoft.com>
Signed-off-by: Hideyuki Nagase <hideyukn@microsoft.com>
Signed-off-by: Steve Pronovost <spronovo@microsoft.com>
Signed-off-by: Brenton DeGeer <brdegeer@microsoft.com>
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt index 90ab3832..d5e832d7 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -27,6 +27,12 @@ option( description: 'Weston backend: RDP remote screensharing' ) option( + 'rdp-thread-check', + type: 'boolean', + value: false, + description: 'Aggressive thread sanity checks for the RDP backend' +) +option( 'screenshare', type: 'boolean', value: true, |