summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-08-07 20:23:32 +0200
committerGitHub <noreply@github.com>2018-08-07 20:23:32 +0200
commitb09c4f45c77ae16b471d2dffbb43d4140b2aea27 (patch)
tree5a5f6a523ce89bde9030d2ea77cb033d83f6a596 /src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp
parentMerge pull request #952 from lioncash/usb (diff)
parentnvdrv: Make Ioctl()'s definition match its prototype (diff)
downloadyuzu-b09c4f45c77ae16b471d2dffbb43d4140b2aea27.tar
yuzu-b09c4f45c77ae16b471d2dffbb43d4140b2aea27.tar.gz
yuzu-b09c4f45c77ae16b471d2dffbb43d4140b2aea27.tar.bz2
yuzu-b09c4f45c77ae16b471d2dffbb43d4140b2aea27.tar.lz
yuzu-b09c4f45c77ae16b471d2dffbb43d4140b2aea27.tar.xz
yuzu-b09c4f45c77ae16b471d2dffbb43d4140b2aea27.tar.zst
yuzu-b09c4f45c77ae16b471d2dffbb43d4140b2aea27.zip
Diffstat (limited to 'src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp')
-rw-r--r--src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp b/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp
index 5a1123ad2..116dabedb 100644
--- a/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp
+++ b/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp
@@ -2,12 +2,14 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
-#include <cinttypes>
-#include <map>
+#include <cstring>
#include "common/assert.h"
#include "common/logging/log.h"
#include "core/core.h"
#include "core/hle/service/nvdrv/devices/nvhost_gpu.h"
+#include "core/memory.h"
+#include "video_core/gpu.h"
+#include "video_core/memory_manager.h"
namespace Service::Nvidia::Devices {