diff options
author | dec05eba <dec05eba@protonmail.com> | 2025-02-22 13:31:51 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2025-02-22 13:31:51 +0100 |
commit | 189736c1a96a1ad0e571ad69f01039e96455011a (patch) | |
tree | 22e1a78f698209e2ce0ef462a5d281b5b3030897 /include/GsrInfo.hpp | |
parent | 8003c209fea16cd164817306cb33d46ac61a44f0 (diff) |
Add option to take a screenshot (default hotkey: alt+f1)
Diffstat (limited to 'include/GsrInfo.hpp')
-rw-r--r-- | include/GsrInfo.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/GsrInfo.hpp b/include/GsrInfo.hpp index a8c0742..b027cc5 100644 --- a/include/GsrInfo.hpp +++ b/include/GsrInfo.hpp @@ -20,6 +20,11 @@ namespace gsr { bool vp9 = false; }; + struct SupportedImageFormats { + bool jpeg = false; + bool png = false; + }; + struct GsrMonitor { std::string name; mgl::vec2i size; @@ -75,6 +80,7 @@ namespace gsr { SystemInfo system_info; GpuInfo gpu_info; SupportedVideoCodecs supported_video_codecs; + SupportedImageFormats supported_image_formats; }; enum class GsrInfoExitStatus { |