summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/interface.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-11-25 05:45:24 +0100
committerGitHub <noreply@github.com>2018-11-25 05:45:24 +0100
commit932fbd5a25aae385c887afcf8342c5e6af8b7c51 (patch)
tree9ef26c56f2ecd1afa9ddb3f0e0334cde8e8af215 /src/core/hle/service/nvdrv/interface.h
parentMerge pull request #1787 from bunnei/fix-gpu-mm (diff)
parentnvdrv: Implement/stub DumpGraphicsMemoryInfo and GetStatus. (diff)
downloadyuzu-932fbd5a25aae385c887afcf8342c5e6af8b7c51.tar
yuzu-932fbd5a25aae385c887afcf8342c5e6af8b7c51.tar.gz
yuzu-932fbd5a25aae385c887afcf8342c5e6af8b7c51.tar.bz2
yuzu-932fbd5a25aae385c887afcf8342c5e6af8b7c51.tar.lz
yuzu-932fbd5a25aae385c887afcf8342c5e6af8b7c51.tar.xz
yuzu-932fbd5a25aae385c887afcf8342c5e6af8b7c51.tar.zst
yuzu-932fbd5a25aae385c887afcf8342c5e6af8b7c51.zip
Diffstat (limited to 'src/core/hle/service/nvdrv/interface.h')
-rw-r--r--src/core/hle/service/nvdrv/interface.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/nvdrv/interface.h b/src/core/hle/service/nvdrv/interface.h
index d340893c2..5a1e4baa7 100644
--- a/src/core/hle/service/nvdrv/interface.h
+++ b/src/core/hle/service/nvdrv/interface.h
@@ -24,6 +24,8 @@ private:
void QueryEvent(Kernel::HLERequestContext& ctx);
void SetClientPID(Kernel::HLERequestContext& ctx);
void FinishInitialize(Kernel::HLERequestContext& ctx);
+ void GetStatus(Kernel::HLERequestContext& ctx);
+ void DumpGraphicsMemoryInfo(Kernel::HLERequestContext& ctx);
std::shared_ptr<Module> nvdrv;