mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 17:46:38 -04:00
Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://electronjs.org/
11 lines
679 B
C++
11 lines
679 B
C++
--- remoting/host/basic_desktop_environment.cc.orig 2023-08-10 01:48:48 UTC
|
|
+++ remoting/host/basic_desktop_environment.cc
|
|
@@ -195,7 +195,7 @@ BasicDesktopEnvironment::CreateVideoCapturer() {
|
|
scoped_refptr<base::SingleThreadTaskRunner> capture_task_runner;
|
|
#if BUILDFLAG(IS_CHROMEOS_ASH)
|
|
capture_task_runner = ui_task_runner_;
|
|
-#elif BUILDFLAG(IS_LINUX) && defined(REMOTING_USE_WAYLAND)
|
|
+#elif (BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)) && defined(REMOTING_USE_WAYLAND)
|
|
// Each capturer instance should get its own thread so the capturers don't
|
|
// compete with each other in multistream mode.
|
|
capture_task_runner = base::ThreadPool::CreateSingleThreadTaskRunner(
|