diff options
| -rw-r--r-- | src/common/logging/backend.cpp | 1 | ||||
| -rw-r--r-- | src/common/logging/log.h | 3 | ||||
| -rw-r--r-- | src/core/CMakeLists.txt | 6 | ||||
| -rw-r--r-- | src/core/core.cpp | 3 | ||||
| -rw-r--r-- | src/core/file_sys/vfs_vector.cpp | 9 | ||||
| -rw-r--r-- | src/core/hle/service/ns/ns.cpp | 447 | ||||
| -rw-r--r-- | src/core/hle/service/psc/psc.cpp | 77 | ||||
| -rw-r--r-- | src/core/hle/service/psc/psc.h | 15 | ||||
| -rw-r--r-- | src/core/hle/service/service.cpp | 2 | ||||
| -rw-r--r-- | src/core/hw/aes/ccm.cpp | 28 | ||||
| -rw-r--r-- | src/core/hw/hw.cpp | 96 | ||||
| -rw-r--r-- | src/core/hw/hw.h | 50 | ||||
| -rw-r--r-- | src/core/hw/lcd.cpp | 67 | ||||
| -rw-r--r-- | src/core/hw/lcd.h | 86 | ||||
| -rw-r--r-- | src/video_core/renderer_opengl/gl_rasterizer_cache.cpp | 9 | ||||
| -rw-r--r-- | src/video_core/renderer_opengl/gl_rasterizer_cache.h | 19 | ||||
| -rw-r--r-- | src/video_core/renderer_opengl/gl_shader_manager.h | 4 | ||||
| -rw-r--r-- | src/video_core/renderer_opengl/gl_state.h | 5 | ||||
| -rw-r--r-- | src/video_core/textures/decoders.cpp | 4 | 
19 files changed, 580 insertions, 351 deletions
| diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index d6714587c..43561d607 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -192,6 +192,7 @@ void FileBackend::Write(const Entry& entry) {      SUB(Service, PCTL)                                                                             \      SUB(Service, PCV)                                                                              \      SUB(Service, PREPO)                                                                            \ +    SUB(Service, PSC)                                                                              \      SUB(Service, SET)                                                                              \      SUB(Service, SM)                                                                               \      SUB(Service, SPL)                                                                              \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index e96d817f4..b5891fb15 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -77,8 +77,9 @@ enum class Class : ClassType {      Service_NVDRV,     ///< The NVDRV (Nvidia driver) service      Service_PCIE,      ///< The PCIe service      Service_PCTL,      ///< The PCTL (Parental control) service -    Service_PCV,       ///< The PCV (Parental control) service +    Service_PCV,       ///< The PCV service      Service_PREPO,     ///< The PREPO (Play report) service +    Service_PSC,       ///< The PSC service      Service_SET,       ///< The SET (Settings) service      Service_SM,        ///< The SM (Service manager) service      Service_SPL,       ///< The SPL service diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 3cc9160ca..a85397450 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -261,6 +261,8 @@ add_library(core STATIC      hle/service/pm/pm.h      hle/service/prepo/prepo.cpp      hle/service/prepo/prepo.h +    hle/service/psc/psc.cpp +    hle/service/psc/psc.h      hle/service/service.cpp      hle/service/service.h      hle/service/set/set.cpp @@ -309,10 +311,6 @@ add_library(core STATIC      hle/service/vi/vi_u.h      hle/service/wlan/wlan.cpp      hle/service/wlan/wlan.h -    hw/hw.cpp -    hw/hw.h -    hw/lcd.cpp -    hw/lcd.h      loader/deconstructed_rom_directory.cpp      loader/deconstructed_rom_directory.h      loader/elf.cpp diff --git a/src/core/core.cpp b/src/core/core.cpp index b7f4b4532..dd845a78a 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -15,7 +15,6 @@  #include "core/hle/service/service.h"  #include "core/hle/service/sm/controller.h"  #include "core/hle/service/sm/sm.h" -#include "core/hw/hw.h"  #include "core/loader/loader.h"  #include "core/memory_setup.h"  #include "core/settings.h" @@ -180,7 +179,6 @@ System::ResultStatus System::Init(EmuWindow* emu_window, u32 system_mode) {      telemetry_session = std::make_unique<Core::TelemetrySession>();      service_manager = std::make_shared<Service::SM::ServiceManager>(); -    HW::Init();      Kernel::Init(system_mode);      Service::Init(service_manager);      GDBStub::Init(); @@ -224,7 +222,6 @@ void System::Shutdown() {      GDBStub::Shutdown();      Service::Shutdown();      Kernel::Shutdown(); -    HW::Shutdown();      service_manager.reset();      telemetry_session.reset();      gpu_core.reset(); diff --git a/src/core/file_sys/vfs_vector.cpp b/src/core/file_sys/vfs_vector.cpp index 4c6337e3a..fda603960 100644 --- a/src/core/file_sys/vfs_vector.cpp +++ b/src/core/file_sys/vfs_vector.cpp @@ -3,6 +3,7 @@  // Refer to the license.txt file included.  #include <algorithm> +#include <utility>  #include "core/file_sys/vfs_vector.h"  namespace FileSys { @@ -31,16 +32,18 @@ bool VectorVfsDirectory::IsReadable() const {  std::string VectorVfsDirectory::GetName() const {      return name;  } +  std::shared_ptr<VfsDirectory> VectorVfsDirectory::GetParentDirectory() const {      return parent;  }  template <typename T>  static bool FindAndRemoveVectorElement(std::vector<T>& vec, std::string_view name) { -    auto iter = std::find_if(vec.begin(), vec.end(), [name](T e) { return e->GetName() == name; }); +    const auto iter = +        std::find_if(vec.begin(), vec.end(), [name](const T& e) { return e->GetName() == name; });      if (iter == vec.end())          return false; -    auto old_size = vec.size(); +      vec.erase(iter);      return true;  } @@ -77,7 +80,7 @@ void VectorVfsDirectory::AddDirectory(VirtualDir dir) {  bool VectorVfsDirectory::ReplaceFileWithSubdirectory(VirtualFile file, VirtualDir dir) {      if (!DeleteFile(file->GetName()))          return false; -    dirs.emplace_back(dir); +    dirs.emplace_back(std::move(dir));      return true;  }  } // namespace FileSys diff --git a/src/core/hle/service/ns/ns.cpp b/src/core/hle/service/ns/ns.cpp index 89c703310..98017267c 100644 --- a/src/core/hle/service/ns/ns.cpp +++ b/src/core/hle/service/ns/ns.cpp @@ -2,12 +2,459 @@  // Licensed under GPLv2 or any later version  // Refer to the license.txt file included. +#include "core/hle/ipc_helpers.h" +#include "core/hle/kernel/hle_ipc.h"  #include "core/hle/service/ns/ns.h"  #include "core/hle/service/ns/pl_u.h"  namespace Service::NS { +class IAccountProxyInterface final : public ServiceFramework<IAccountProxyInterface> { +public: +    explicit IAccountProxyInterface() : ServiceFramework{"IAccountProxyInterface"} { +        // clang-format off +        static const FunctionInfo functions[] = { +            {0, nullptr, "CreateUserAccount"}, +        }; +        // clang-format on + +        RegisterHandlers(functions); +    } +}; + +class IApplicationManagerInterface final : public ServiceFramework<IApplicationManagerInterface> { +public: +    explicit IApplicationManagerInterface() : ServiceFramework{"IApplicationManagerInterface"} { +        // clang-format off +        static const FunctionInfo functions[] = { +            {0, nullptr, "ListApplicationRecord"}, +            {1, nullptr, "GenerateApplicationRecordCount"}, +            {2, nullptr, "GetApplicationRecordUpdateSystemEvent"}, +            {3, nullptr, "GetApplicationViewDeprecated"}, +            {4, nullptr, "DeleteApplicationEntity"}, +            {5, nullptr, "DeleteApplicationCompletely"}, +            {6, nullptr, "IsAnyApplicationEntityRedundant"}, +            {7, nullptr, "DeleteRedundantApplicationEntity"}, +            {8, nullptr, "IsApplicationEntityMovable"}, +            {9, nullptr, "MoveApplicationEntity"}, +            {11, nullptr, "CalculateApplicationOccupiedSize"}, +            {16, nullptr, "PushApplicationRecord"}, +            {17, nullptr, "ListApplicationRecordContentMeta"}, +            {19, nullptr, "LaunchApplication"}, +            {21, nullptr, "GetApplicationContentPath"}, +            {22, nullptr, "TerminateApplication"}, +            {23, nullptr, "ResolveApplicationContentPath"}, +            {26, nullptr, "BeginInstallApplication"}, +            {27, nullptr, "DeleteApplicationRecord"}, +            {30, nullptr, "RequestApplicationUpdateInfo"}, +            {32, nullptr, "CancelApplicationDownload"}, +            {33, nullptr, "ResumeApplicationDownload"}, +            {35, nullptr, "UpdateVersionList"}, +            {36, nullptr, "PushLaunchVersion"}, +            {37, nullptr, "ListRequiredVersion"}, +            {38, nullptr, "CheckApplicationLaunchVersion"}, +            {39, nullptr, "CheckApplicationLaunchRights"}, +            {40, nullptr, "GetApplicationLogoData"}, +            {41, nullptr, "CalculateApplicationDownloadRequiredSize"}, +            {42, nullptr, "CleanupSdCard"}, +            {43, nullptr, "CheckSdCardMountStatus"}, +            {44, nullptr, "GetSdCardMountStatusChangedEvent"}, +            {45, nullptr, "GetGameCardAttachmentEvent"}, +            {46, nullptr, "GetGameCardAttachmentInfo"}, +            {47, nullptr, "GetTotalSpaceSize"}, +            {48, nullptr, "GetFreeSpaceSize"}, +            {49, nullptr, "GetSdCardRemovedEvent"}, +            {52, nullptr, "GetGameCardUpdateDetectionEvent"}, +            {53, nullptr, "DisableApplicationAutoDelete"}, +            {54, nullptr, "EnableApplicationAutoDelete"}, +            {55, nullptr, "GetApplicationDesiredLanguage"}, +            {56, nullptr, "SetApplicationTerminateResult"}, +            {57, nullptr, "ClearApplicationTerminateResult"}, +            {58, nullptr, "GetLastSdCardMountUnexpectedResult"}, +            {59, nullptr, "ConvertApplicationLanguageToLanguageCode"}, +            {60, nullptr, "ConvertLanguageCodeToApplicationLanguage"}, +            {61, nullptr, "GetBackgroundDownloadStressTaskInfo"}, +            {62, nullptr, "GetGameCardStopper"}, +            {63, nullptr, "IsSystemProgramInstalled"}, +            {64, nullptr, "StartApplyDeltaTask"}, +            {65, nullptr, "GetRequestServerStopper"}, +            {66, nullptr, "GetBackgroundApplyDeltaStressTaskInfo"}, +            {67, nullptr, "CancelApplicationApplyDelta"}, +            {68, nullptr, "ResumeApplicationApplyDelta"}, +            {69, nullptr, "CalculateApplicationApplyDeltaRequiredSize"}, +            {70, nullptr, "ResumeAll"}, +            {71, nullptr, "GetStorageSize"}, +            {80, nullptr, "RequestDownloadApplication"}, +            {81, nullptr, "RequestDownloadAddOnContent"}, +            {82, nullptr, "DownloadApplication"}, +            {83, nullptr, "CheckApplicationResumeRights"}, +            {84, nullptr, "GetDynamicCommitEvent"}, +            {85, nullptr, "RequestUpdateApplication2"}, +            {86, nullptr, "EnableApplicationCrashReport"}, +            {87, nullptr, "IsApplicationCrashReportEnabled"}, +            {90, nullptr, "BoostSystemMemoryResourceLimit"}, +            {100, nullptr, "ResetToFactorySettings"}, +            {101, nullptr, "ResetToFactorySettingsWithoutUserSaveData"}, +            {102, nullptr, "ResetToFactorySettingsForRefurbishment"}, +            {200, nullptr, "CalculateUserSaveDataStatistics"}, +            {201, nullptr, "DeleteUserSaveDataAll"}, +            {210, nullptr, "DeleteUserSystemSaveData"}, +            {220, nullptr, "UnregisterNetworkServiceAccount"}, +            {300, nullptr, "GetApplicationShellEvent"}, +            {301, nullptr, "PopApplicationShellEventInfo"}, +            {302, nullptr, "LaunchLibraryApplet"}, +            {303, nullptr, "TerminateLibraryApplet"}, +            {304, nullptr, "LaunchSystemApplet"}, +            {305, nullptr, "TerminateSystemApplet"}, +            {306, nullptr, "LaunchOverlayApplet"}, +            {307, nullptr, "TerminateOverlayApplet"}, +            {400, nullptr, "GetApplicationControlData"}, +            {401, nullptr, "InvalidateAllApplicationControlCache"}, +            {402, nullptr, "RequestDownloadApplicationControlData"}, +            {403, nullptr, "GetMaxApplicationControlCacheCount"}, +            {404, nullptr, "InvalidateApplicationControlCache"}, +            {405, nullptr, "ListApplicationControlCacheEntryInfo"}, +            {502, nullptr, "RequestCheckGameCardRegistration"}, +            {503, nullptr, "RequestGameCardRegistrationGoldPoint"}, +            {504, nullptr, "RequestRegisterGameCard"}, +            {505, nullptr, "GetGameCardMountFailureEvent"}, +            {506, nullptr, "IsGameCardInserted"}, +            {507, nullptr, "EnsureGameCardAccess"}, +            {508, nullptr, "GetLastGameCardMountFailureResult"}, +            {509, nullptr, "ListApplicationIdOnGameCard"}, +            {600, nullptr, "CountApplicationContentMeta"}, +            {601, nullptr, "ListApplicationContentMetaStatus"}, +            {602, nullptr, "ListAvailableAddOnContent"}, +            {603, nullptr, "GetOwnedApplicationContentMetaStatus"}, +            {604, nullptr, "RegisterContentsExternalKey"}, +            {605, nullptr, "ListApplicationContentMetaStatusWithRightsCheck"}, +            {606, nullptr, "GetContentMetaStorage"}, +            {700, nullptr, "PushDownloadTaskList"}, +            {701, nullptr, "ClearTaskStatusList"}, +            {702, nullptr, "RequestDownloadTaskList"}, +            {703, nullptr, "RequestEnsureDownloadTask"}, +            {704, nullptr, "ListDownloadTaskStatus"}, +            {705, nullptr, "RequestDownloadTaskListData"}, +            {800, nullptr, "RequestVersionList"}, +            {801, nullptr, "ListVersionList"}, +            {802, nullptr, "RequestVersionListData"}, +            {900, nullptr, "GetApplicationRecord"}, +            {901, nullptr, "GetApplicationRecordProperty"}, +            {902, nullptr, "EnableApplicationAutoUpdate"}, +            {903, nullptr, "DisableApplicationAutoUpdate"}, +            {904, nullptr, "TouchApplication"}, +            {905, nullptr, "RequestApplicationUpdate"}, +            {906, nullptr, "IsApplicationUpdateRequested"}, +            {907, nullptr, "WithdrawApplicationUpdateRequest"}, +            {908, nullptr, "ListApplicationRecordInstalledContentMeta"}, +            {909, nullptr, "WithdrawCleanupAddOnContentsWithNoRightsRecommendation"}, +            {1000, nullptr, "RequestVerifyApplicationDeprecated"}, +            {1001, nullptr, "CorruptApplicationForDebug"}, +            {1002, nullptr, "RequestVerifyAddOnContentsRights"}, +            {1003, nullptr, "RequestVerifyApplication"}, +            {1004, nullptr, "CorruptContentForDebug"}, +            {1200, nullptr, "NeedsUpdateVulnerability"}, +            {1300, nullptr, "IsAnyApplicationEntityInstalled"}, +            {1301, nullptr, "DeleteApplicationContentEntities"}, +            {1302, nullptr, "CleanupUnrecordedApplicationEntity"}, +            {1303, nullptr, "CleanupAddOnContentsWithNoRights"}, +            {1304, nullptr, "DeleteApplicationContentEntity"}, +            {1305, nullptr, "TryDeleteRunningApplicationEntity"}, +            {1306, nullptr, "TryDeleteRunningApplicationCompletely"}, +            {1307, nullptr, "TryDeleteRunningApplicationContentEntities"}, +            {1400, nullptr, "PrepareShutdown"}, +            {1500, nullptr, "FormatSdCard"}, +            {1501, nullptr, "NeedsSystemUpdateToFormatSdCard"}, +            {1502, nullptr, "GetLastSdCardFormatUnexpectedResult"}, +            {1504, nullptr, "InsertSdCard"}, +            {1505, nullptr, "RemoveSdCard"}, +            {1600, nullptr, "GetSystemSeedForPseudoDeviceId"}, +            {1601, nullptr, "ResetSystemSeedForPseudoDeviceId"}, +            {1700, nullptr, "ListApplicationDownloadingContentMeta"}, +            {1701, nullptr, "GetApplicationView"}, +            {1702, nullptr, "GetApplicationDownloadTaskStatus"}, +            {1703, nullptr, "GetApplicationViewDownloadErrorContext"}, +            {1800, nullptr, "IsNotificationSetupCompleted"}, +            {1801, nullptr, "GetLastNotificationInfoCount"}, +            {1802, nullptr, "ListLastNotificationInfo"}, +            {1803, nullptr, "ListNotificationTask"}, +            {1900, nullptr, "IsActiveAccount"}, +            {1901, nullptr, "RequestDownloadApplicationPrepurchasedRights"}, +            {1902, nullptr, "GetApplicationTicketInfo"}, +            {2000, nullptr, "GetSystemDeliveryInfo"}, +            {2001, nullptr, "SelectLatestSystemDeliveryInfo"}, +            {2002, nullptr, "VerifyDeliveryProtocolVersion"}, +            {2003, nullptr, "GetApplicationDeliveryInfo"}, +            {2004, nullptr, "HasAllContentsToDeliver"}, +            {2005, nullptr, "CompareApplicationDeliveryInfo"}, +            {2006, nullptr, "CanDeliverApplication"}, +            {2007, nullptr, "ListContentMetaKeyToDeliverApplication"}, +            {2008, nullptr, "NeedsSystemUpdateToDeliverApplication"}, +            {2009, nullptr, "EstimateRequiredSize"}, +            {2010, nullptr, "RequestReceiveApplication"}, +            {2011, nullptr, "CommitReceiveApplication"}, +            {2012, nullptr, "GetReceiveApplicationProgress"}, +            {2013, nullptr, "RequestSendApplication"}, +            {2014, nullptr, "GetSendApplicationProgress"}, +            {2015, nullptr, "CompareSystemDeliveryInfo"}, +            {2016, nullptr, "ListNotCommittedContentMeta"}, +            {2017, nullptr, "CreateDownloadTask"}, +        }; +        // clang-format on + +        RegisterHandlers(functions); +    } +}; + +class IApplicationVersionInterface final : public ServiceFramework<IApplicationVersionInterface> { +public: +    explicit IApplicationVersionInterface() : ServiceFramework{"IApplicationVersionInterface"} { +        // clang-format off +        static const FunctionInfo functions[] = { +            {0, nullptr, "GetLaunchRequiredVersion"}, +            {1, nullptr, "UpgradeLaunchRequiredVersion"}, +            {35, nullptr, "UpdateVersionList"}, +            {36, nullptr, "PushLaunchVersion"}, +            {37, nullptr, "ListRequiredVersion"}, +            {800, nullptr, "RequestVersionList"}, +            {801, nullptr, "ListVersionList"}, +            {802, nullptr, "RequestVersionListData"}, +            {1000, nullptr, "PerformAutoUpdate"}, +        }; +        // clang-format on + +        RegisterHandlers(functions); +    } +}; + +class IContentManagerInterface final : public ServiceFramework<IContentManagerInterface> { +public: +    explicit IContentManagerInterface() : ServiceFramework{"IContentManagerInterface"} { +        // clang-format off +        static const FunctionInfo functions[] = { +            {11, nullptr, "CalculateApplicationOccupiedSize"}, +            {43, nullptr, "CheckSdCardMountStatus"}, +            {47, nullptr, "GetTotalSpaceSize"}, +            {48, nullptr, "GetFreeSpaceSize"}, +            {600, nullptr, "CountApplicationContentMeta"}, +            {601, nullptr, "ListApplicationContentMetaStatus"}, +            {605, nullptr, "ListApplicationContentMetaStatusWithRightsCheck"}, +            {607, nullptr, "IsAnyApplicationRunning"}, +        }; +        // clang-format on + +        RegisterHandlers(functions); +    } +}; + +class IDocumentInterface final : public ServiceFramework<IDocumentInterface> { +public: +    explicit IDocumentInterface() : ServiceFramework{"IDocumentInterface"} { +        // clang-format off +        static const FunctionInfo functions[] = { +            {21, nullptr, "GetApplicationContentPath"}, +            {23, nullptr, "ResolveApplicationContentPath"}, +        }; +        // clang-format on + +        RegisterHandlers(functions); +    } +}; + +class IDownloadTaskInterface final : public ServiceFramework<IDownloadTaskInterface> { +public: +    explicit IDownloadTaskInterface() : ServiceFramework{"IDownloadTaskInterface"} { +        // clang-format off +        static const FunctionInfo functions[] = { +            {701, nullptr, "ClearTaskStatusList"}, +            {702, nullptr, "RequestDownloadTaskList"}, +            {703, nullptr, "RequestEnsureDownloadTask"}, +            {704, nullptr, "ListDownloadTaskStatus"}, +            {705, nullptr, "RequestDownloadTaskListData"}, +            {706, nullptr, "TryCommitCurrentApplicationDownloadTask"}, +            {707, nullptr, "EnableAutoCommit"}, +            {708, nullptr, "DisableAutoCommit"}, +            {709, nullptr, "TriggerDynamicCommitEvent"}, +        }; +        // clang-format on + +        RegisterHandlers(functions); +    } +}; + +class IECommerceInterface final : public ServiceFramework<IECommerceInterface> { +public: +    explicit IECommerceInterface() : ServiceFramework{"IECommerceInterface"} { +        // clang-format off +        static const FunctionInfo functions[] = { +            {0, nullptr, "RequestLinkDevice"}, +        }; +        // clang-format on + +        RegisterHandlers(functions); +    } +}; + +class IFactoryResetInterface final : public ServiceFramework<IFactoryResetInterface> { +public: +    explicit IFactoryResetInterface() : ServiceFramework{"IFactoryResetInterface"} { +        // clang-format off +        static const FunctionInfo functions[] = { +            {100, nullptr, "ResetToFactorySettings"}, +            {101, nullptr, "ResetToFactorySettingsWithoutUserSaveData"}, +            {102, nullptr, "ResetToFactorySettingsForRefurbishment "}, +        }; +        // clang-format on + +        RegisterHandlers(functions); +    } +}; + +class NS final : public ServiceFramework<NS> { +public: +    explicit NS(const char* name) : ServiceFramework{name} { +        // clang-format off +        static const FunctionInfo functions[] = { +            {7992, &NS::PushInterface<IECommerceInterface>, "GetECommerceInterface"}, +            {7993, &NS::PushInterface<IApplicationVersionInterface>, "GetApplicationVersionInterface"}, +            {7994, &NS::PushInterface<IFactoryResetInterface>, "GetFactoryResetInterface"}, +            {7995, &NS::PushInterface<IAccountProxyInterface>, "GetAccountProxyInterface"}, +            {7996, &NS::PushInterface<IApplicationManagerInterface>, "GetApplicationManagerInterface"}, +            {7997, &NS::PushInterface<IDownloadTaskInterface>, "GetDownloadTaskInterface"}, +            {7998, &NS::PushInterface<IContentManagerInterface>, "GetContentManagementInterface"}, +            {7999, &NS::PushInterface<IDocumentInterface>, "GetDocumentInterface"}, +        }; +        // clang-format on + +        RegisterHandlers(functions); +    } + +private: +    template <typename T> +    void PushInterface(Kernel::HLERequestContext& ctx) { +        IPC::ResponseBuilder rb{ctx, 2, 0, 1}; +        rb.Push(RESULT_SUCCESS); +        rb.PushIpcInterface<T>(); + +        LOG_DEBUG(Service_NS, "called"); +    } +}; + +class NS_DEV final : public ServiceFramework<NS_DEV> { +public: +    explicit NS_DEV() : ServiceFramework{"ns:dev"} { +        // clang-format off +        static const FunctionInfo functions[] = { +            {0, nullptr, "LaunchProgram"}, +            {1, nullptr, "TerminateProcess"}, +            {2, nullptr, "TerminateProgram"}, +            {3, nullptr, "GetShellEventHandle"}, +            {4, nullptr, "GetShellEventInfo"}, +            {5, nullptr, "TerminateApplication"}, +            {6, nullptr, "PrepareLaunchProgramFromHost"}, +            {7, nullptr, "LaunchApplication"}, +            {8, nullptr, "LaunchApplicationWithStorageId"}, +        }; +        // clang-format on + +        RegisterHandlers(functions); +    } +}; + +class ISystemUpdateControl final : public ServiceFramework<ISystemUpdateControl> { +public: +    explicit ISystemUpdateControl() : ServiceFramework{"ISystemUpdateControl"} { +        // clang-format off +        static const FunctionInfo functions[] = { +            {0, nullptr, "HasDownloaded"}, +            {1, nullptr, "RequestCheckLatestUpdate"}, +            {2, nullptr, "RequestDownloadLatestUpdate"}, +            {3, nullptr, "GetDownloadProgress"}, +            {4, nullptr, "ApplyDownloadedUpdate"}, +            {5, nullptr, "RequestPrepareCardUpdate"}, +            {6, nullptr, "GetPrepareCardUpdateProgress"}, +            {7, nullptr, "HasPreparedCardUpdate"}, +            {8, nullptr, "ApplyCardUpdate"}, +            {9, nullptr, "GetDownloadedEulaDataSize"}, +            {10, nullptr, "GetDownloadedEulaData"}, +            {11, nullptr, "SetupCardUpdate"}, +            {12, nullptr, "GetPreparedCardUpdateEulaDataSize"}, +            {13, nullptr, "GetPreparedCardUpdateEulaData"}, +            {14, nullptr, "SetupCardUpdateViaSystemUpdater"}, +            {15, nullptr, "HasReceived"}, +            {16, nullptr, "RequestReceiveSystemUpdate"}, +            {17, nullptr, "GetReceiveProgress"}, +            {18, nullptr, "ApplyReceivedUpdate"}, +            {19, nullptr, "GetReceivedEulaDataSize"}, +            {20, nullptr, "GetReceivedEulaData"}, +            {21, nullptr, "SetupToReceiveSystemUpdate"}, +        }; +        // clang-format on + +        RegisterHandlers(functions); +    } +}; + +class NS_SU final : public ServiceFramework<NS_SU> { +public: +    explicit NS_SU() : ServiceFramework{"ns:su"} { +        // clang-format off +        static const FunctionInfo functions[] = { +            {0, nullptr, "GetBackgroundNetworkUpdateState"}, +            {1, &NS_SU::OpenSystemUpdateControl, "OpenSystemUpdateControl"}, +            {2, nullptr, "NotifyExFatDriverRequired"}, +            {3, nullptr, "ClearExFatDriverStatusForDebug"}, +            {4, nullptr, "RequestBackgroundNetworkUpdate"}, +            {5, nullptr, "NotifyBackgroundNetworkUpdate"}, +            {6, nullptr, "NotifyExFatDriverDownloadedForDebug"}, +            {9, nullptr, "GetSystemUpdateNotificationEventForContentDelivery"}, +            {10, nullptr, "NotifySystemUpdateForContentDelivery"}, +            {11, nullptr, "PrepareShutdown"}, +            {16, nullptr, "DestroySystemUpdateTask"}, +            {17, nullptr, "RequestSendSystemUpdate"}, +            {18, nullptr, "GetSendSystemUpdateProgress"}, +        }; +        // clang-format on + +        RegisterHandlers(functions); +    } + +private: +    void OpenSystemUpdateControl(Kernel::HLERequestContext& ctx) { +        IPC::ResponseBuilder rb{ctx, 2, 0, 1}; +        rb.Push(RESULT_SUCCESS); +        rb.PushIpcInterface<ISystemUpdateControl>(); + +        LOG_DEBUG(Service_NS, "called"); +    } +}; + +class NS_VM final : public ServiceFramework<NS_VM> { +public: +    explicit NS_VM() : ServiceFramework{"ns:vm"} { +        // clang-format off +        static const FunctionInfo functions[] = { +            {1200, nullptr, "NeedsUpdateVulnerability"}, +            {1201, nullptr, "UpdateSafeSystemVersionForDebug"}, +            {1202, nullptr, "GetSafeSystemVersion"}, +        }; +        // clang-format on + +        RegisterHandlers(functions); +    } +}; +  void InstallInterfaces(SM::ServiceManager& service_manager) { +    std::make_shared<NS>("ns:am2")->InstallAsService(service_manager); +    std::make_shared<NS>("ns:ec")->InstallAsService(service_manager); +    std::make_shared<NS>("ns:rid")->InstallAsService(service_manager); +    std::make_shared<NS>("ns:rt")->InstallAsService(service_manager); +    std::make_shared<NS>("ns:web")->InstallAsService(service_manager); + +    std::make_shared<NS_DEV>()->InstallAsService(service_manager); +    std::make_shared<NS_SU>()->InstallAsService(service_manager); +    std::make_shared<NS_VM>()->InstallAsService(service_manager); +      std::make_shared<PL_U>()->InstallAsService(service_manager);  } diff --git a/src/core/hle/service/psc/psc.cpp b/src/core/hle/service/psc/psc.cpp new file mode 100644 index 000000000..bbad870a2 --- /dev/null +++ b/src/core/hle/service/psc/psc.cpp @@ -0,0 +1,77 @@ +// Copyright 2018 yuzu emulator team +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#include <memory> + +#include "common/logging/log.h" +#include "core/hle/ipc_helpers.h" +#include "core/hle/service/psc/psc.h" +#include "core/hle/service/service.h" +#include "core/hle/service/sm/sm.h" + +namespace Service::PSC { + +class PSC_C final : public ServiceFramework<PSC_C> { +public: +    explicit PSC_C() : ServiceFramework{"psc:c"} { +        // clang-format off +        static const FunctionInfo functions[] = { +            {0, nullptr, "Unknown1"}, +            {1, nullptr, "Unknown2"}, +            {2, nullptr, "Unknown3"}, +            {3, nullptr, "Unknown4"}, +            {4, nullptr, "Unknown5"}, +            {5, nullptr, "Unknown6"}, +            {6, nullptr, "Unknown7"}, +        }; +        // clang-format on + +        RegisterHandlers(functions); +    } +}; + +class IPmModule final : public ServiceFramework<IPmModule> { +public: +    explicit IPmModule() : ServiceFramework{"IPmModule"} { +        // clang-format off +        static const FunctionInfo functions[] = { +            {0, nullptr, "Initialize"}, +            {1, nullptr, "GetRequest"}, +            {2, nullptr, "Acknowledge"}, +            {3, nullptr, "Unknown1"}, +        }; +        // clang-format on + +        RegisterHandlers(functions); +    } +}; + +class PSC_M final : public ServiceFramework<PSC_M> { +public: +    explicit PSC_M() : ServiceFramework{"psc:m"} { +        // clang-format off +        static const FunctionInfo functions[] = { +            {0, &PSC_M::GetPmModule, "GetPmModule"}, +        }; +        // clang-format on + +        RegisterHandlers(functions); +    } + +private: +    void GetPmModule(Kernel::HLERequestContext& ctx) { +        IPC::ResponseBuilder rb{ctx, 2, 0, 1}; +        rb.Push(RESULT_SUCCESS); +        rb.PushIpcInterface<IPmModule>(); + +        LOG_DEBUG(Service_PSC, "called"); +    } +}; + +void InstallInterfaces(SM::ServiceManager& sm) { +    std::make_shared<PSC_C>()->InstallAsService(sm); +    std::make_shared<PSC_M>()->InstallAsService(sm); +} + +} // namespace Service::PSC diff --git a/src/core/hle/service/psc/psc.h b/src/core/hle/service/psc/psc.h new file mode 100644 index 000000000..5052eb02c --- /dev/null +++ b/src/core/hle/service/psc/psc.h @@ -0,0 +1,15 @@ +// Copyright 2018 yuzu emulator team +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#pragma once + +namespace Service::SM { +class ServiceManager; +} + +namespace Service::PSC { + +void InstallInterfaces(SM::ServiceManager& sm); + +} // namespace Service::PSC diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index 828666e9b..025f0c696 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp @@ -52,6 +52,7 @@  #include "core/hle/service/pcv/pcv.h"  #include "core/hle/service/pm/pm.h"  #include "core/hle/service/prepo/prepo.h" +#include "core/hle/service/psc/psc.h"  #include "core/hle/service/service.h"  #include "core/hle/service/set/settings.h"  #include "core/hle/service/sm/controller.h" @@ -238,6 +239,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {      PCV::InstallInterfaces(*sm);      PlayReport::InstallInterfaces(*sm);      PM::InstallInterfaces(*sm); +    PSC::InstallInterfaces(*sm);      Set::InstallInterfaces(*sm);      Sockets::InstallInterfaces(*sm);      SPL::InstallInterfaces(*sm); diff --git a/src/core/hw/aes/ccm.cpp b/src/core/hw/aes/ccm.cpp deleted file mode 100644 index 1ee37aaa4..000000000 --- a/src/core/hw/aes/ccm.cpp +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright 2017 Citra Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. - -#include <algorithm> -#include "common/alignment.h" -#include "common/assert.h" -#include "common/logging/log.h" -#include "core/hw/aes/ccm.h" -#include "core/hw/aes/key.h" - -namespace HW { -namespace AES { - -std::vector<u8> EncryptSignCCM(const std::vector<u8>& pdata, const CCMNonce& nonce, -                               size_t slot_id) { -    UNIMPLEMENTED(); -    return {}; -} - -std::vector<u8> DecryptVerifyCCM(const std::vector<u8>& cipher, const CCMNonce& nonce, -                                 size_t slot_id) { -    UNIMPLEMENTED(); -    return {}; -} - -} // namespace AES -} // namespace HW diff --git a/src/core/hw/hw.cpp b/src/core/hw/hw.cpp deleted file mode 100644 index 2f48068c1..000000000 --- a/src/core/hw/hw.cpp +++ /dev/null @@ -1,96 +0,0 @@ -// Copyright 2014 Citra Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. - -#include "common/common_types.h" -#include "common/logging/log.h" -#include "core/hw/hw.h" -#include "core/hw/lcd.h" - -namespace HW { - -template <typename T> -inline void Read(T& var, const u32 addr) { -    switch (addr & 0xFFFFF000) { -    case VADDR_GPU: -    case VADDR_GPU + 0x1000: -    case VADDR_GPU + 0x2000: -    case VADDR_GPU + 0x3000: -    case VADDR_GPU + 0x4000: -    case VADDR_GPU + 0x5000: -    case VADDR_GPU + 0x6000: -    case VADDR_GPU + 0x7000: -    case VADDR_GPU + 0x8000: -    case VADDR_GPU + 0x9000: -    case VADDR_GPU + 0xA000: -    case VADDR_GPU + 0xB000: -    case VADDR_GPU + 0xC000: -    case VADDR_GPU + 0xD000: -    case VADDR_GPU + 0xE000: -    case VADDR_GPU + 0xF000: -        break; -    case VADDR_LCD: -        LCD::Read(var, addr); -        break; -    default: -        LOG_ERROR(HW_Memory, "Unknown Read{} @ 0x{:08X}", sizeof(var) * 8, addr); -        break; -    } -} - -template <typename T> -inline void Write(u32 addr, const T data) { -    switch (addr & 0xFFFFF000) { -    case VADDR_GPU: -    case VADDR_GPU + 0x1000: -    case VADDR_GPU + 0x2000: -    case VADDR_GPU + 0x3000: -    case VADDR_GPU + 0x4000: -    case VADDR_GPU + 0x5000: -    case VADDR_GPU + 0x6000: -    case VADDR_GPU + 0x7000: -    case VADDR_GPU + 0x8000: -    case VADDR_GPU + 0x9000: -    case VADDR_GPU + 0xA000: -    case VADDR_GPU + 0xB000: -    case VADDR_GPU + 0xC000: -    case VADDR_GPU + 0xD000: -    case VADDR_GPU + 0xE000: -    case VADDR_GPU + 0xF000: -        break; -    case VADDR_LCD: -        LCD::Write(addr, data); -        break; -    default: -        LOG_ERROR(HW_Memory, "Unknown Write{} 0x{:08X} @ 0x{:08X}", sizeof(data) * 8, data, addr); -        break; -    } -} - -// Explicitly instantiate template functions because we aren't defining this in the header: - -template void Read<u64>(u64& var, const u32 addr); -template void Read<u32>(u32& var, const u32 addr); -template void Read<u16>(u16& var, const u32 addr); -template void Read<u8>(u8& var, const u32 addr); - -template void Write<u64>(u32 addr, const u64 data); -template void Write<u32>(u32 addr, const u32 data); -template void Write<u16>(u32 addr, const u16 data); -template void Write<u8>(u32 addr, const u8 data); - -/// Update hardware -void Update() {} - -/// Initialize hardware -void Init() { -    LCD::Init(); -    LOG_DEBUG(HW, "Initialized OK"); -} - -/// Shutdown hardware -void Shutdown() { -    LCD::Shutdown(); -    LOG_DEBUG(HW, "Shutdown OK"); -} -} // namespace HW diff --git a/src/core/hw/hw.h b/src/core/hw/hw.h deleted file mode 100644 index 5890d2b5c..000000000 --- a/src/core/hw/hw.h +++ /dev/null @@ -1,50 +0,0 @@ -// Copyright 2014 Citra Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. - -#pragma once - -#include "common/common_types.h" - -namespace HW { - -/// Beginnings of IO register regions, in the user VA space. -enum : u32 { -    VADDR_HASH = 0x1EC01000, -    VADDR_CSND = 0x1EC03000, -    VADDR_DSP = 0x1EC40000, -    VADDR_PDN = 0x1EC41000, -    VADDR_CODEC = 0x1EC41000, -    VADDR_SPI = 0x1EC42000, -    VADDR_SPI_2 = 0x1EC43000, // Only used under TWL_FIRM? -    VADDR_I2C = 0x1EC44000, -    VADDR_CODEC_2 = 0x1EC45000, -    VADDR_HID = 0x1EC46000, -    VADDR_GPIO = 0x1EC47000, -    VADDR_I2C_2 = 0x1EC48000, -    VADDR_SPI_3 = 0x1EC60000, -    VADDR_I2C_3 = 0x1EC61000, -    VADDR_MIC = 0x1EC62000, -    VADDR_PXI = 0x1EC63000, -    VADDR_LCD = 0x1ED02000, -    VADDR_DSP_2 = 0x1ED03000, -    VADDR_HASH_2 = 0x1EE01000, -    VADDR_GPU = 0x1EF00000, -}; - -template <typename T> -void Read(T& var, const u32 addr); - -template <typename T> -void Write(u32 addr, const T data); - -/// Update hardware -void Update(); - -/// Initialize hardware -void Init(); - -/// Shutdown hardware -void Shutdown(); - -} // namespace HW diff --git a/src/core/hw/lcd.cpp b/src/core/hw/lcd.cpp deleted file mode 100644 index 0b62174d5..000000000 --- a/src/core/hw/lcd.cpp +++ /dev/null @@ -1,67 +0,0 @@ -// Copyright 2015 Citra Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. - -#include <cstring> -#include "common/common_types.h" -#include "common/logging/log.h" -#include "core/hw/hw.h" -#include "core/hw/lcd.h" -#include "core/tracer/recorder.h" - -namespace LCD { - -Regs g_regs; - -template <typename T> -inline void Read(T& var, const u32 raw_addr) { -    u32 addr = raw_addr - HW::VADDR_LCD; -    u32 index = addr / 4; - -    // Reads other than u32 are untested, so I'd rather have them abort than silently fail -    if (index >= 0x400 || !std::is_same<T, u32>::value) { -        LOG_ERROR(HW_LCD, "Unknown Read{} @ 0x{:08X}", sizeof(var) * 8, addr); -        return; -    } - -    var = g_regs[index]; -} - -template <typename T> -inline void Write(u32 addr, const T data) { -    addr -= HW::VADDR_LCD; -    u32 index = addr / 4; - -    // Writes other than u32 are untested, so I'd rather have them abort than silently fail -    if (index >= 0x400 || !std::is_same<T, u32>::value) { -        LOG_ERROR(HW_LCD, "Unknown Write{} 0x{:08X} @ 0x{:08X}", sizeof(data) * 8, data, addr); -        return; -    } - -    g_regs[index] = static_cast<u32>(data); -} - -// Explicitly instantiate template functions because we aren't defining this in the header: - -template void Read<u64>(u64& var, const u32 addr); -template void Read<u32>(u32& var, const u32 addr); -template void Read<u16>(u16& var, const u32 addr); -template void Read<u8>(u8& var, const u32 addr); - -template void Write<u64>(u32 addr, const u64 data); -template void Write<u32>(u32 addr, const u32 data); -template void Write<u16>(u32 addr, const u16 data); -template void Write<u8>(u32 addr, const u8 data); - -/// Initialize hardware -void Init() { -    memset(&g_regs, 0, sizeof(g_regs)); -    LOG_DEBUG(HW_LCD, "Initialized OK"); -} - -/// Shutdown hardware -void Shutdown() { -    LOG_DEBUG(HW_LCD, "Shutdown OK"); -} - -} // namespace LCD diff --git a/src/core/hw/lcd.h b/src/core/hw/lcd.h deleted file mode 100644 index d2db9700f..000000000 --- a/src/core/hw/lcd.h +++ /dev/null @@ -1,86 +0,0 @@ -// Copyright 2015 Citra Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. - -#pragma once - -#include <cstddef> -#include <type_traits> -#include "common/bit_field.h" -#include "common/common_funcs.h" -#include "common/common_types.h" - -#define LCD_REG_INDEX(field_name) (offsetof(LCD::Regs, field_name) / sizeof(u32)) - -namespace LCD { - -struct Regs { - -    union ColorFill { -        u32 raw; - -        BitField<0, 8, u32> color_r; -        BitField<8, 8, u32> color_g; -        BitField<16, 8, u32> color_b; -        BitField<24, 1, u32> is_enabled; -    }; - -    INSERT_PADDING_WORDS(0x81); -    ColorFill color_fill_top; -    INSERT_PADDING_WORDS(0xE); -    u32 backlight_top; - -    INSERT_PADDING_WORDS(0x1F0); - -    ColorFill color_fill_bottom; -    INSERT_PADDING_WORDS(0xE); -    u32 backlight_bottom; -    INSERT_PADDING_WORDS(0x16F); - -    static constexpr size_t NumIds() { -        return sizeof(Regs) / sizeof(u32); -    } - -    const u32& operator[](int index) const { -        const u32* content = reinterpret_cast<const u32*>(this); -        return content[index]; -    } - -    u32& operator[](int index) { -        u32* content = reinterpret_cast<u32*>(this); -        return content[index]; -    } -}; -static_assert(std::is_standard_layout<Regs>::value, "Structure does not use standard layout"); - -// TODO: MSVC does not support using offsetof() on non-static data members even though this -//       is technically allowed since C++11. This macro should be enabled once MSVC adds -//       support for that. -#ifndef _MSC_VER -#define ASSERT_REG_POSITION(field_name, position)                                                  \ -    static_assert(offsetof(Regs, field_name) == position * 4,                                      \ -                  "Field " #field_name " has invalid position") - -ASSERT_REG_POSITION(color_fill_top, 0x81); -ASSERT_REG_POSITION(backlight_top, 0x90); -ASSERT_REG_POSITION(color_fill_bottom, 0x281); -ASSERT_REG_POSITION(backlight_bottom, 0x290); - -#undef ASSERT_REG_POSITION -#endif // !defined(_MSC_VER) - -extern Regs g_regs; - -template <typename T> -void Read(T& var, const u32 addr); - -template <typename T> -void Write(u32 addr, const T data); - -/// Initialize hardware -void Init(); - -/// Shutdown hardware -void Shutdown(); - -} // namespace LCD diff --git a/src/video_core/renderer_opengl/gl_rasterizer_cache.cpp b/src/video_core/renderer_opengl/gl_rasterizer_cache.cpp index a4d9707cb..c8f0c4e28 100644 --- a/src/video_core/renderer_opengl/gl_rasterizer_cache.cpp +++ b/src/video_core/renderer_opengl/gl_rasterizer_cache.cpp @@ -118,6 +118,7 @@ static constexpr std::array<FormatTuple, SurfaceParams::MaxPixelFormat> tex_form      {GL_RG16UI, GL_RG_INTEGER, GL_UNSIGNED_SHORT, ComponentType::UInt, false}, // RG16UI      {GL_RG16I, GL_RG_INTEGER, GL_SHORT, ComponentType::SInt, false},           // RG16I      {GL_RG16_SNORM, GL_RG, GL_SHORT, ComponentType::SNorm, false},             // RG16S +    {GL_RGB32F, GL_RGB, GL_FLOAT, ComponentType::Float, false},                // RGB32F      {GL_SRGB8_ALPHA8, GL_RGBA, GL_UNSIGNED_INT_8_8_8_8_REV, ComponentType::UNorm, false}, // SRGBA8      // DepthStencil formats @@ -218,9 +219,10 @@ static constexpr std::array<void (*)(u32, u32, u32, u8*, Tegra::GPUVAddr),          MortonCopy<true, PixelFormat::R16UNORM>,     MortonCopy<true, PixelFormat::RG16>,          MortonCopy<true, PixelFormat::RG16F>,        MortonCopy<true, PixelFormat::RG16UI>,          MortonCopy<true, PixelFormat::RG16I>,        MortonCopy<true, PixelFormat::RG16S>, -        MortonCopy<true, PixelFormat::SRGBA8>,       MortonCopy<true, PixelFormat::Z24S8>, -        MortonCopy<true, PixelFormat::S8Z24>,        MortonCopy<true, PixelFormat::Z32F>, -        MortonCopy<true, PixelFormat::Z16>,          MortonCopy<true, PixelFormat::Z32FS8>, +        MortonCopy<true, PixelFormat::RGB32F>,       MortonCopy<true, PixelFormat::SRGBA8>, +        MortonCopy<true, PixelFormat::Z24S8>,        MortonCopy<true, PixelFormat::S8Z24>, +        MortonCopy<true, PixelFormat::Z32F>,         MortonCopy<true, PixelFormat::Z16>, +        MortonCopy<true, PixelFormat::Z32FS8>,  };  static constexpr std::array<void (*)(u32, u32, u32, u8*, Tegra::GPUVAddr), @@ -253,6 +255,7 @@ static constexpr std::array<void (*)(u32, u32, u32, u8*, Tegra::GPUVAddr),          MortonCopy<false, PixelFormat::RG16UI>,          MortonCopy<false, PixelFormat::RG16I>,          MortonCopy<false, PixelFormat::RG16S>, +        MortonCopy<false, PixelFormat::RGB32F>,          MortonCopy<false, PixelFormat::SRGBA8>,          MortonCopy<false, PixelFormat::Z24S8>,          MortonCopy<false, PixelFormat::S8Z24>, diff --git a/src/video_core/renderer_opengl/gl_rasterizer_cache.h b/src/video_core/renderer_opengl/gl_rasterizer_cache.h index b73dc2b06..4e1e18d9c 100644 --- a/src/video_core/renderer_opengl/gl_rasterizer_cache.h +++ b/src/video_core/renderer_opengl/gl_rasterizer_cache.h @@ -48,16 +48,17 @@ struct SurfaceParams {          RG16UI = 23,          RG16I = 24,          RG16S = 25, -        SRGBA8 = 26, +        RGB32F = 26, +        SRGBA8 = 27,          MaxColorFormat,          // DepthStencil formats -        Z24S8 = 27, -        S8Z24 = 28, -        Z32F = 29, -        Z16 = 30, -        Z32FS8 = 31, +        Z24S8 = 28, +        S8Z24 = 29, +        Z32F = 30, +        Z16 = 31, +        Z32FS8 = 32,          MaxDepthStencilFormat, @@ -121,6 +122,7 @@ struct SurfaceParams {              1, // RG16UI              1, // RG16I              1, // RG16S +            1, // RGB32F              1, // SRGBA8              1, // Z24S8              1, // S8Z24 @@ -164,6 +166,7 @@ struct SurfaceParams {              32,  // RG16UI              32,  // RG16I              32,  // RG16S +            96,  // RGB32F              32,  // SRGBA8              32,  // Z24S8              32,  // S8Z24 @@ -272,6 +275,8 @@ struct SurfaceParams {              UNREACHABLE();          case Tegra::Texture::TextureFormat::R32_G32:              return PixelFormat::RG32F; +        case Tegra::Texture::TextureFormat::R32_G32_B32: +            return PixelFormat::RGB32F;          case Tegra::Texture::TextureFormat::R16:              switch (component_type) {              case Tegra::Texture::ComponentType::FLOAT: @@ -363,6 +368,8 @@ struct SurfaceParams {              return Tegra::Texture::TextureFormat::A8R8G8B8;          case PixelFormat::RGBA32F:              return Tegra::Texture::TextureFormat::R32_G32_B32_A32; +        case PixelFormat::RGB32F: +            return Tegra::Texture::TextureFormat::R32_G32_B32;          case PixelFormat::RG32F:              return Tegra::Texture::TextureFormat::R32_G32;          case PixelFormat::R32F: diff --git a/src/video_core/renderer_opengl/gl_shader_manager.h b/src/video_core/renderer_opengl/gl_shader_manager.h index e29d551e1..2214c348a 100644 --- a/src/video_core/renderer_opengl/gl_shader_manager.h +++ b/src/video_core/renderer_opengl/gl_shader_manager.h @@ -105,14 +105,14 @@ public:      }      ShaderEntries UseProgrammableVertexShader(const MaxwellVSConfig& config, -                                              const ShaderSetup setup) { +                                              const ShaderSetup& setup) {          ShaderEntries result;          std::tie(current.vs, result) = vertex_shaders.Get(config, setup);          return result;      }      ShaderEntries UseProgrammableFragmentShader(const MaxwellFSConfig& config, -                                                const ShaderSetup setup) { +                                                const ShaderSetup& setup) {          ShaderEntries result;          std::tie(current.fs, result) = fragment_shaders.Get(config, setup);          return result; diff --git a/src/video_core/renderer_opengl/gl_state.h b/src/video_core/renderer_opengl/gl_state.h index 3398d7c04..24b1d956b 100644 --- a/src/video_core/renderer_opengl/gl_state.h +++ b/src/video_core/renderer_opengl/gl_state.h @@ -82,7 +82,7 @@ public:      GLenum logic_op; // GL_LOGIC_OP_MODE      // 3 texture units - one for each that is used in PICA fragment shader emulation -    struct { +    struct TextureUnit {          GLuint texture_2d; // GL_TEXTURE_BINDING_2D          GLuint sampler;    // GL_SAMPLER_BINDING          struct { @@ -104,7 +104,8 @@ public:              Unbind();              sampler = 0;          } -    } texture_units[32]; +    }; +    std::array<TextureUnit, 32> texture_units;      struct {          GLuint read_framebuffer; // GL_READ_FRAMEBUFFER_BINDING diff --git a/src/video_core/textures/decoders.cpp b/src/video_core/textures/decoders.cpp index d794f8402..65db84ad3 100644 --- a/src/video_core/textures/decoders.cpp +++ b/src/video_core/textures/decoders.cpp @@ -57,6 +57,8 @@ u32 BytesPerPixel(TextureFormat format) {      case TextureFormat::BC7U:          // In this case a 'pixel' actually refers to a 4x4 tile.          return 16; +    case TextureFormat::R32_G32_B32: +        return 12;      case TextureFormat::ASTC_2D_4X4:      case TextureFormat::A8R8G8B8:      case TextureFormat::A2B10G10R10: @@ -131,6 +133,7 @@ std::vector<u8> UnswizzleTexture(VAddr address, TextureFormat format, u32 width,      case TextureFormat::R16_G16:      case TextureFormat::BF10GF11RF11:      case TextureFormat::ASTC_2D_4X4: +    case TextureFormat::R32_G32_B32:          CopySwizzledData(width, height, bytes_per_pixel, bytes_per_pixel, data,                           unswizzled_data.data(), true, block_height);          break; @@ -190,6 +193,7 @@ std::vector<u8> DecodeTexture(const std::vector<u8>& texture_data, TextureFormat      case TextureFormat::R32:      case TextureFormat::R16:      case TextureFormat::R16_G16: +    case TextureFormat::R32_G32_B32:          // TODO(Subv): For the time being just forward the same data without any decoding.          rgba_data = texture_data;          break; | 
