aboutsummaryrefslogtreecommitdiff
path: root/include/capture/portal.h
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2024-07-15 18:57:33 +0200
committerdec05eba <dec05eba@protonmail.com>2024-07-15 19:02:34 +0200
commit048b8d21ecbd1168ff8e033b12cbfd66bba0127c (patch)
treef536c35090a6ed78803d064c0784370a2424ca7a /include/capture/portal.h
parentc447a9a35f51815db307e5d58630040cd63ad4b7 (diff)
Add support for desktop portal capture (-w portal)
Diffstat (limited to 'include/capture/portal.h')
-rw-r--r--include/capture/portal.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/capture/portal.h b/include/capture/portal.h
new file mode 100644
index 0000000..989b042
--- /dev/null
+++ b/include/capture/portal.h
@@ -0,0 +1,16 @@
+#ifndef GSR_CAPTURE_PORTAL_H
+#define GSR_CAPTURE_PORTAL_H
+
+#include "capture.h"
+
+typedef struct {
+ gsr_egl *egl;
+ gsr_color_range color_range;
+ bool hdr;
+ bool record_cursor;
+ bool restore_portal_session;
+} gsr_capture_portal_params;
+
+gsr_capture* gsr_capture_portal_create(const gsr_capture_portal_params *params);
+
+#endif /* GSR_CAPTURE_PORTAL_H */