summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvflinger/nvflinger.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-12-11 00:32:52 +0100
committerbunnei <bunneidev@gmail.com>2020-12-29 01:33:47 +0100
commit19a8f03ad59abacb3fae60f7ba6d5d358e779c29 (patch)
treea5cbf27860e556f1034cc3797105f705c08e26a1 /src/core/hle/service/nvflinger/nvflinger.h
parenthle: service: vi: Remove usage of SleepClientThread. (diff)
downloadyuzu-19a8f03ad59abacb3fae60f7ba6d5d358e779c29.tar
yuzu-19a8f03ad59abacb3fae60f7ba6d5d358e779c29.tar.gz
yuzu-19a8f03ad59abacb3fae60f7ba6d5d358e779c29.tar.bz2
yuzu-19a8f03ad59abacb3fae60f7ba6d5d358e779c29.tar.lz
yuzu-19a8f03ad59abacb3fae60f7ba6d5d358e779c29.tar.xz
yuzu-19a8f03ad59abacb3fae60f7ba6d5d358e779c29.tar.zst
yuzu-19a8f03ad59abacb3fae60f7ba6d5d358e779c29.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nvflinger/nvflinger.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/core/hle/service/nvflinger/nvflinger.h b/src/core/hle/service/nvflinger/nvflinger.h
index 1ebe949c0..ce1347d6d 100644
--- a/src/core/hle/service/nvflinger/nvflinger.h
+++ b/src/core/hle/service/nvflinger/nvflinger.h
@@ -75,10 +75,7 @@ public:
[[nodiscard]] std::shared_ptr<Kernel::ReadableEvent> FindVsyncEvent(u64 display_id) const;
/// Obtains a buffer queue identified by the ID.
- [[nodiscard]] BufferQueue& FindBufferQueue(u32 id);
-
- /// Obtains a buffer queue identified by the ID.
- [[nodiscard]] const BufferQueue& FindBufferQueue(u32 id) const;
+ [[nodiscard]] BufferQueue* FindBufferQueue(u32 id);
/// Performs a composition request to the emulated nvidia GPU and triggers the vsync events when
/// finished.
@@ -86,11 +83,11 @@ public:
[[nodiscard]] s64 GetNextTicks() const;
+private:
[[nodiscard]] std::unique_lock<std::mutex> Lock() const {
return std::unique_lock{*guard};
}
-private:
/// Finds the display identified by the specified ID.
[[nodiscard]] VI::Display* FindDisplay(u64 display_id);