2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

hle: nvflinger: graphic_buffer_producer: Remove unnecessary pragma pack.

This commit is contained in:
bunnei 2022-03-19 22:08:26 -07:00
parent 7db60fe7da
commit 480c79edba

View file

@ -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