aboutsummaryrefslogtreecommitdiff
path: root/include/defs.h
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2024-08-20 15:28:37 +0200
committerdec05eba <dec05eba@protonmail.com>2024-08-20 15:28:37 +0200
commit45a10baf5f46785383d6885ac602060d7d4caa1f (patch)
tree847eccd871a1dc600ee96141469177a606e2f690 /include/defs.h
parentfaf6ba69a0f3eeafb54ca761298c602649bf4b62 (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.h3
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 {