// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #pragma once #include "core/hle/service/service.h" namespace Core { class System; } namespace Service::Capture { enum class AlbumReportOption : s32; class AlbumManager; class IScreenShotApplicationService final : public ServiceFramework { public: explicit IScreenShotApplicationService(Core::System& system_, std::shared_ptr album_manager); ~IScreenShotApplicationService() override; void CaptureAndSaveScreenshot(AlbumReportOption report_option); private: static constexpr std::size_t screenshot_width = 1280; static constexpr std::size_t screenshot_height = 720; static constexpr std::size_t bytes_per_pixel = 4; void SetShimLibraryVersion(HLERequestContext& ctx); void SaveScreenShotEx0(HLERequestContext& ctx); void SaveScreenShotEx1(HLERequestContext& ctx); std::array image_data; std::shared_ptr manager; }; } // namespace Service::Capture