diff options
author | bunnei <ericbunnie@gmail.com> | 2014-04-18 23:52:49 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-04-18 23:52:49 +0200 |
commit | 958bca606e80110e05d7c142dda3097fddc96503 (patch) | |
tree | 576917751444b4dfdb476d040b4e075bde431b7b /src/core/hle/service/gsp.h | |
parent | Init window size from VideoCore. Start changing the default window behavior... (diff) | |
parent | renamed hw_lcd module to just lcd (diff) | |
download | yuzu-958bca606e80110e05d7c142dda3097fddc96503.tar yuzu-958bca606e80110e05d7c142dda3097fddc96503.tar.gz yuzu-958bca606e80110e05d7c142dda3097fddc96503.tar.bz2 yuzu-958bca606e80110e05d7c142dda3097fddc96503.tar.lz yuzu-958bca606e80110e05d7c142dda3097fddc96503.tar.xz yuzu-958bca606e80110e05d7c142dda3097fddc96503.tar.zst yuzu-958bca606e80110e05d7c142dda3097fddc96503.zip |
Diffstat (limited to 'src/core/hle/service/gsp.h')
-rw-r--r-- | src/core/hle/service/gsp.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/core/hle/service/gsp.h b/src/core/hle/service/gsp.h new file mode 100644 index 000000000..3b1846082 --- /dev/null +++ b/src/core/hle/service/gsp.h @@ -0,0 +1,35 @@ +// Copyright 2014 Citra Emulator Project +// Licensed under GPLv2 +// Refer to the license.txt file included. + +#pragma once + +#include "core/hle/service/service.h" + +//////////////////////////////////////////////////////////////////////////////////////////////////// +// Namespace GSP_GPU + +namespace GSP_GPU { + +/// Interface to "srv:" service +class Interface : public Service::Interface { +public: + + Interface(); + + ~Interface(); + + /** + * Gets the string port name used by CTROS for the service + * @return Port name of service + */ + std::string GetPortName() const { + return "gsp::Gpu"; + } + +private: + + DISALLOW_COPY_AND_ASSIGN(Interface); +}; + +} // namespace |