summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2022-03-19 22:08:26 -0700
committerGravatar bunnei2022-03-24 18:13:33 -0700
commit480c79edba7162d29c82e3752653626d37aacd5f (patch)
tree76dd65a5562507b14dd7652ce8f1648493c14536 /src
parenthle: nvflinger: parcel: Reserve token size. (diff)
downloadyuzu-480c79edba7162d29c82e3752653626d37aacd5f.tar.gz
yuzu-480c79edba7162d29c82e3752653626d37aacd5f.tar.xz
yuzu-480c79edba7162d29c82e3752653626d37aacd5f.zip
hle: nvflinger: graphic_buffer_producer: Remove unnecessary pragma pack.
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nvflinger/graphic_buffer_producer.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/hle/service/nvflinger/graphic_buffer_producer.h b/src/core/hle/service/nvflinger/graphic_buffer_producer.h
index dd4187027..58763cf08 100644
--- a/src/core/hle/service/nvflinger/graphic_buffer_producer.h
+++ b/src/core/hle/service/nvflinger/graphic_buffer_producer.h
@@ -48,7 +48,6 @@ private:
48#pragma pack(pop) 48#pragma pack(pop)
49static_assert(sizeof(QueueBufferInput) == 84, "QueueBufferInput has wrong size"); 49static_assert(sizeof(QueueBufferInput) == 84, "QueueBufferInput has wrong size");
50 50
51#pragma pack(push, 1)
52struct QueueBufferOutput final { 51struct QueueBufferOutput final {
53 QueueBufferOutput(); 52 QueueBufferOutput();
54 53
@@ -72,7 +71,6 @@ private:
72 u32 transform_hint{}; 71 u32 transform_hint{};
73 u32 num_pending_buffers{}; 72 u32 num_pending_buffers{};
74}; 73};
75#pragma pack(pop)
76static_assert(sizeof(QueueBufferOutput) == 16, "QueueBufferOutput has wrong size"); 74static_assert(sizeof(QueueBufferOutput) == 16, "QueueBufferOutput has wrong size");
77 75
78} // namespace Service::android 76} // namespace Service::android