diff options
| author | 2022-03-19 22:08:26 -0700 | |
|---|---|---|
| committer | 2022-03-24 18:13:33 -0700 | |
| commit | 480c79edba7162d29c82e3752653626d37aacd5f (patch) | |
| tree | 76dd65a5562507b14dd7652ce8f1648493c14536 /src | |
| parent | hle: nvflinger: parcel: Reserve token size. (diff) | |
| download | yuzu-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.h | 2 |
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) |
| 49 | static_assert(sizeof(QueueBufferInput) == 84, "QueueBufferInput has wrong size"); | 49 | static_assert(sizeof(QueueBufferInput) == 84, "QueueBufferInput has wrong size"); |
| 50 | 50 | ||
| 51 | #pragma pack(push, 1) | ||
| 52 | struct QueueBufferOutput final { | 51 | struct 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) | ||
| 76 | static_assert(sizeof(QueueBufferOutput) == 16, "QueueBufferOutput has wrong size"); | 74 | static_assert(sizeof(QueueBufferOutput) == 16, "QueueBufferOutput has wrong size"); |
| 77 | 75 | ||
| 78 | } // namespace Service::android | 76 | } // namespace Service::android |