This commit is contained in:
2025-12-28 13:55:10 -08:00
commit 9b4219aa67
131 changed files with 32853 additions and 0 deletions

17
include/capture/portal.h Normal file
View File

@ -0,0 +1,17 @@
#ifndef GSR_CAPTURE_PORTAL_H
#define GSR_CAPTURE_PORTAL_H
#include "capture.h"
typedef struct {
gsr_egl *egl;
bool record_cursor;
bool restore_portal_session;
/* If this is set to NULL then this defaults to $XDG_CONFIG_HOME/gpu-screen-recorder/restore_token ($XDG_CONFIG_HOME defaults to $HOME/.config) */
const char *portal_session_token_filepath;
vec2i output_resolution;
} gsr_capture_portal_params;
gsr_capture* gsr_capture_portal_create(const gsr_capture_portal_params *params);
#endif /* GSR_CAPTURE_PORTAL_H */