summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvflinger/nvflinger.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-07 15:17:09 +0200
committerLioncash <mathew1800@gmail.com>2018-08-08 03:53:05 +0200
commitd378d98e2628f83fa56242ec6b53e3cce7c6bb56 (patch)
treec50db5a6d7840f493d970ba449aa7010124e9a88 /src/core/hle/service/nvflinger/nvflinger.h
parentMerge pull request #971 from DarkLordZach/mbedtls-2.12.0 (diff)
downloadyuzu-d378d98e2628f83fa56242ec6b53e3cce7c6bb56.tar
yuzu-d378d98e2628f83fa56242ec6b53e3cce7c6bb56.tar.gz
yuzu-d378d98e2628f83fa56242ec6b53e3cce7c6bb56.tar.bz2
yuzu-d378d98e2628f83fa56242ec6b53e3cce7c6bb56.tar.lz
yuzu-d378d98e2628f83fa56242ec6b53e3cce7c6bb56.tar.xz
yuzu-d378d98e2628f83fa56242ec6b53e3cce7c6bb56.tar.zst
yuzu-d378d98e2628f83fa56242ec6b53e3cce7c6bb56.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nvflinger/nvflinger.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/core/hle/service/nvflinger/nvflinger.h b/src/core/hle/service/nvflinger/nvflinger.h
index 5374df175..f7112949f 100644
--- a/src/core/hle/service/nvflinger/nvflinger.h
+++ b/src/core/hle/service/nvflinger/nvflinger.h
@@ -16,6 +16,10 @@ namespace CoreTiming {
struct EventType;
}
+namespace Service::Nvidia {
+class Module;
+}
+
namespace Service::NVFlinger {
class BufferQueue;
@@ -44,6 +48,9 @@ public:
NVFlinger();
~NVFlinger();
+ /// Sets the NVDrv module instance to use to send buffers to the GPU.
+ void SetNVDrvInstance(std::shared_ptr<Nvidia::Module> instance);
+
/// Opens the specified display and returns the id.
u64 OpenDisplay(std::string_view name);
@@ -70,6 +77,8 @@ private:
/// Returns the layer identified by the specified id in the desired display.
Layer& GetLayer(u64 display_id, u64 layer_id);
+ std::shared_ptr<Nvidia::Module> nvdrv;
+
std::vector<Display> displays;
std::vector<std::shared_ptr<BufferQueue>> buffer_queues;