summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvflinger/ui
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-11-12 03:13:35 +0100
committerbunnei <bunneidev@gmail.com>2022-03-25 02:13:32 +0100
commitd456b9d554da32e4353ba6e837e1cb8690782a9d (patch)
tree75029812af06aabfcc83d29098db4ff85e929ea5 /src/core/hle/service/nvflinger/ui
parenthle: nvflinger: Add implementation for GraphicBuffer class. (diff)
downloadyuzu-d456b9d554da32e4353ba6e837e1cb8690782a9d.tar
yuzu-d456b9d554da32e4353ba6e837e1cb8690782a9d.tar.gz
yuzu-d456b9d554da32e4353ba6e837e1cb8690782a9d.tar.bz2
yuzu-d456b9d554da32e4353ba6e837e1cb8690782a9d.tar.lz
yuzu-d456b9d554da32e4353ba6e837e1cb8690782a9d.tar.xz
yuzu-d456b9d554da32e4353ba6e837e1cb8690782a9d.tar.zst
yuzu-d456b9d554da32e4353ba6e837e1cb8690782a9d.zip
Diffstat (limited to 'src/core/hle/service/nvflinger/ui')
-rw-r--r--src/core/hle/service/nvflinger/ui/graphic_buffer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/nvflinger/ui/graphic_buffer.h b/src/core/hle/service/nvflinger/ui/graphic_buffer.h
index c1e54d9ed..2e7f251ef 100644
--- a/src/core/hle/service/nvflinger/ui/graphic_buffer.h
+++ b/src/core/hle/service/nvflinger/ui/graphic_buffer.h
@@ -44,7 +44,7 @@ public:
return buffer_id;
}
- constexpr u32 ExternalFormat() const {
+ constexpr PixelFormat ExternalFormat() const {
return external_format;
}
@@ -89,7 +89,7 @@ private:
INSERT_PADDING_WORDS(3);
u32 buffer_id{};
INSERT_PADDING_WORDS(6);
- u32 external_format{};
+ PixelFormat external_format{};
INSERT_PADDING_WORDS(10);
u32 handle{};
u32 offset{};