Allow cuda kernel to run in parallell

This commit is contained in:
loki-47-6F-64
2021-09-27 17:58:35 +02:00
parent 847d7b6980
commit 4177b02064
4 changed files with 95 additions and 29 deletions

View File

@@ -264,13 +264,11 @@ std::unique_ptr<deinit_t> init() {
#endif
#ifdef SUNSHINE_BUILD_CUDA
if(verify_nvfbc()) {
BOOST_LOG(info) << "Using NvFBC for screencasting"sv;
sources[source::NVFBC] = true;
}
#endif
#ifdef SUNSHINE_BUILD_WAYLAND
if(verify_wl()) {
BOOST_LOG(info) << "Using Wayland for screencasting"sv;
sources[source::WAYLAND] = true;
}
#endif
@@ -282,13 +280,11 @@ std::unique_ptr<deinit_t> init() {
display_cursor = false;
}
BOOST_LOG(info) << "Using KMS for screencasting"sv;
sources[source::KMS] = true;
}
#endif
#ifdef SUNSHINE_BUILD_X11
if(verify_x11()) {
BOOST_LOG(info) << "Using X11 for screencasting"sv;
sources[source::X11] = true;
}
#endif