summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-03-19 22:08:26 -0700
committerbunnei <bunneidev@gmail.com>2022-03-24 18:13:33 -0700
commit480c79edba7162d29c82e3752653626d37aacd5f (patch)
tree76dd65a5562507b14dd7652ce8f1648493c14536 /src
parent7db60fe7da370c0d37182a27ec8af928cd066b40 (diff)
hle: nvflinger: graphic_buffer_producer: Remove unnecessary pragma pack.
Diffstat (limited to 'src')
-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:
#pragma pack(pop)
static_assert(sizeof(QueueBufferInput) == 84, "QueueBufferInput has wrong size");
-#pragma pack(push, 1)
struct QueueBufferOutput final {
QueueBufferOutput();
@@ -72,7 +71,6 @@ private:
u32 transform_hint{};
u32 num_pending_buffers{};
};
-#pragma pack(pop)
static_assert(sizeof(QueueBufferOutput) == 16, "QueueBufferOutput has wrong size");
} // namespace Service::android