General: Resolve a few missing initializer warnings

Resolves a few -Wmissing-initializer warnings.
This commit is contained in:
Lioncash 2020-10-29 01:48:02 -04:00
parent c20569ebdf
commit 5553bd3ba2
5 changed files with 24 additions and 4 deletions

View file

@ -29,6 +29,10 @@ void BufferQueue::SetPreallocatedBuffer(u32 slot, const IGBPBuffer& igbp_buffer)
.slot = slot,
.status = Buffer::Status::Free,
.igbp_buffer = igbp_buffer,
.transform = {},
.crop_rect = {},
.swap_interval = 0,
.multi_fence = {},
});
buffer_wait_event.writable->Signal();