- added stubbed out GSP::Gpu service interface
- various cleanups/refactors to HLE services
This commit is contained in:
parent
acef5e0b17
commit
32c3462047
9 changed files with 111 additions and 7 deletions
34
src/core/hle/service/gsp.h
Normal file
34
src/core/hle/service/gsp.h
Normal file
|
@ -0,0 +1,34 @@
|
|||
// Copyright 2014 Citra Emulator Project
|
||||
// Licensed under GPLv2
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "core/hle/service/service.h"
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Namespace Service
|
||||
|
||||
namespace GSP_GPU {
|
||||
|
||||
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
|
Loading…
Add table
Add a link
Reference in a new issue