summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvnflinger/nvnflinger.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-01-18 04:03:40 +0100
committerLiam <byteslice@airmail.cc>2024-01-18 04:03:40 +0100
commite4bbb24dcf9048ac23e6c12f2ab5af1e988af764 (patch)
treeef5c985bcc765c02da9e443140de55228ed4134d /src/core/hle/service/nvnflinger/nvnflinger.h
parentnvnflinger: ensure display abandonment considers all layers and future layers (diff)
downloadyuzu-e4bbb24dcf9048ac23e6c12f2ab5af1e988af764.tar
yuzu-e4bbb24dcf9048ac23e6c12f2ab5af1e988af764.tar.gz
yuzu-e4bbb24dcf9048ac23e6c12f2ab5af1e988af764.tar.bz2
yuzu-e4bbb24dcf9048ac23e6c12f2ab5af1e988af764.tar.lz
yuzu-e4bbb24dcf9048ac23e6c12f2ab5af1e988af764.tar.xz
yuzu-e4bbb24dcf9048ac23e6c12f2ab5af1e988af764.tar.zst
yuzu-e4bbb24dcf9048ac23e6c12f2ab5af1e988af764.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nvnflinger/nvnflinger.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/nvnflinger/nvnflinger.h b/src/core/hle/service/nvnflinger/nvnflinger.h
index 871285764..a60e0ae6b 100644
--- a/src/core/hle/service/nvnflinger/nvnflinger.h
+++ b/src/core/hle/service/nvnflinger/nvnflinger.h
@@ -74,10 +74,10 @@ public:
[[nodiscard]] std::optional<u64> CreateLayer(u64 display_id);
/// Opens a layer on all displays for the given layer ID.
- void OpenLayer(u64 layer_id);
+ bool OpenLayer(u64 layer_id);
/// Closes a layer on all displays for the given layer ID.
- void CloseLayer(u64 layer_id);
+ bool CloseLayer(u64 layer_id);
/// Destroys the given layer ID.
void DestroyLayer(u64 layer_id);