Add region capture option

This commit is contained in:
dec05eba
2025-03-15 00:39:37 +01:00
parent 6c7158c06d
commit 63b2b6cbc3
15 changed files with 843 additions and 192 deletions

View File

@@ -310,6 +310,8 @@ namespace gsr {
static void parse_capture_options_line(SupportedCaptureOptions &capture_options, std::string_view line) {
if(line == "window")
capture_options.window = true;
else if(line == "region")
capture_options.region = true;
else if(line == "focused")
capture_options.focused = true;
else if(line == "portal")