mirror of
https://repo.dec05eba.com/gpu-screen-recorder
synced 2026-03-31 09:07:13 +09:00
Disable steam deck support at the moment because the driver is broken (ignores qp, capture tearing)
This commit is contained in:
10
src/main.cpp
10
src/main.cpp
@@ -1843,6 +1843,11 @@ static void info_command() {
|
||||
_exit(22);
|
||||
}
|
||||
|
||||
if(egl.gpu_info.is_known_broken_driver) {
|
||||
fprintf(stderr, "gsr error: recording is not supported on your device because your device has broken drivers\n");
|
||||
_exit(14);
|
||||
}
|
||||
|
||||
egl.card_path[0] = '\0';
|
||||
if(monitor_capture_use_drm(&egl, wayland)) {
|
||||
// TODO: Allow specifying another card, and in other places
|
||||
@@ -2758,6 +2763,11 @@ int main(int argc, char **argv) {
|
||||
_exit(1);
|
||||
}
|
||||
|
||||
if(egl.gpu_info.is_known_broken_driver) {
|
||||
fprintf(stderr, "gsr error: recording is not supported on your device because your device has broken drivers\n");
|
||||
_exit(14);
|
||||
}
|
||||
|
||||
bool very_old_gpu = false;
|
||||
|
||||
if(egl.gpu_info.vendor == GSR_GPU_VENDOR_NVIDIA && egl.gpu_info.gpu_version != 0 && egl.gpu_info.gpu_version < 900) {
|
||||
|
||||
Reference in New Issue
Block a user