diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-08-20 15:28:37 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-08-20 15:28:37 +0200 |
commit | 45a10baf5f46785383d6885ac602060d7d4caa1f (patch) | |
tree | 847eccd871a1dc600ee96141469177a606e2f690 /include/defs.h | |
parent | faf6ba69a0f3eeafb54ca761298c602649bf4b62 (diff) |
Disable steam deck support at the moment because the driver is broken (ignores qp, capture tearing)
Diffstat (limited to 'include/defs.h')
-rw-r--r-- | include/defs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/defs.h b/include/defs.h index 473583c..d2d0572 100644 --- a/include/defs.h +++ b/include/defs.h @@ -1,6 +1,8 @@ #ifndef GSR_DEFS_H #define GSR_DEFS_H +#include <stdbool.h> + typedef enum { GSR_GPU_VENDOR_AMD, GSR_GPU_VENDOR_INTEL, @@ -10,6 +12,7 @@ typedef enum { typedef struct { gsr_gpu_vendor vendor; int gpu_version; /* 0 if unknown */ + bool is_known_broken_driver; } gsr_gpu_info; typedef enum { |