summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/caps/caps_manager.h
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2023-10-27 00:27:44 +0200
committerNarr the Reg <juangerman-13@hotmail.com>2023-10-27 06:29:52 +0200
commitf26dddf3b59ace84626dc05e2699514579d4a5bc (patch)
tree6521620938a6f644ae848b4ed632cf3f8c3c192c /src/core/hle/service/caps/caps_manager.h
parentMerge pull request #11880 from abouvier/unbundle-stb (diff)
downloadyuzu-f26dddf3b59ace84626dc05e2699514579d4a5bc.tar
yuzu-f26dddf3b59ace84626dc05e2699514579d4a5bc.tar.gz
yuzu-f26dddf3b59ace84626dc05e2699514579d4a5bc.tar.bz2
yuzu-f26dddf3b59ace84626dc05e2699514579d4a5bc.tar.lz
yuzu-f26dddf3b59ace84626dc05e2699514579d4a5bc.tar.xz
yuzu-f26dddf3b59ace84626dc05e2699514579d4a5bc.tar.zst
yuzu-f26dddf3b59ace84626dc05e2699514579d4a5bc.zip
Diffstat (limited to 'src/core/hle/service/caps/caps_manager.h')
-rw-r--r--src/core/hle/service/caps/caps_manager.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/core/hle/service/caps/caps_manager.h b/src/core/hle/service/caps/caps_manager.h
index 44d85117f..e20c70c7b 100644
--- a/src/core/hle/service/caps/caps_manager.h
+++ b/src/core/hle/service/caps/caps_manager.h
@@ -59,14 +59,17 @@ public:
const ScreenShotDecodeOption& decoder_options) const;
Result SaveScreenShot(ApplicationAlbumEntry& out_entry, const ScreenShotAttribute& attribute,
- std::span<const u8> image_data, u64 aruid);
- Result SaveScreenShot(ApplicationAlbumEntry& out_entry, const ScreenShotAttribute& attribute,
- const ApplicationData& app_data, std::span<const u8> image_data,
+ AlbumReportOption report_option, std::span<const u8> image_data,
u64 aruid);
+ Result SaveScreenShot(ApplicationAlbumEntry& out_entry, const ScreenShotAttribute& attribute,
+ AlbumReportOption report_option, const ApplicationData& app_data,
+ std::span<const u8> image_data, u64 aruid);
Result SaveEditedScreenShot(ApplicationAlbumEntry& out_entry,
const ScreenShotAttribute& attribute, const AlbumFileId& file_id,
std::span<const u8> image_data);
+ void FlipVerticallyOnWrite(bool flip);
+
private:
static constexpr std::size_t NandAlbumFileLimit = 1000;
static constexpr std::size_t SdAlbumFileLimit = 10000;