diff options
| author | Liam <byteslice@airmail.cc> | 2024-02-14 23:44:05 -0500 |
|---|---|---|
| committer | Liam <byteslice@airmail.cc> | 2024-02-17 18:08:38 -0500 |
| commit | 812f23d05c77fb10407546c3e7a95447fcbea395 (patch) | |
| tree | bbfb035c35ccffb6dbe0995002c2937bd94edc2d /src/core/hle/service/nvdrv | |
| parent | dcce9837d240fa2492f29e5ae2649085ae8f711c (diff) | |
vi: manage resources independently of nvnflinger and refactor
Diffstat (limited to 'src/core/hle/service/nvdrv')
| -rw-r--r-- | src/core/hle/service/nvdrv/nvdrv.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/core/hle/service/nvdrv/nvdrv.h b/src/core/hle/service/nvdrv/nvdrv.h index 154c38951..b76f81e59 100644 --- a/src/core/hle/service/nvdrv/nvdrv.h +++ b/src/core/hle/service/nvdrv/nvdrv.h @@ -10,13 +10,11 @@ #include <span> #include <string> #include <unordered_map> -#include <vector> #include "common/common_types.h" #include "core/hle/service/kernel_helpers.h" #include "core/hle/service/nvdrv/core/container.h" #include "core/hle/service/nvdrv/nvdata.h" -#include "core/hle/service/nvnflinger/ui/fence.h" #include "core/hle/service/service.h" namespace Core { @@ -27,10 +25,6 @@ namespace Kernel { class KEvent; } -namespace Service::Nvnflinger { -class Nvnflinger; -} - namespace Service::Nvidia { namespace NvCore { @@ -99,7 +93,6 @@ public: private: friend class EventInterface; - friend class Service::Nvnflinger::Nvnflinger; /// Manages syncpoints on the host NvCore::Container container; |
