mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-19 00:47:57 +00:00
video_core: Silence -Wmissing-field-initializers warnings
This commit is contained in:
parent
928831c1cc
commit
7afc85ba3a
5 changed files with 54 additions and 23 deletions
|
@ -181,6 +181,7 @@ std::vector<vk::ShaderModule> VKGraphicsPipeline::CreateShaderModules(
|
|||
.pNext = nullptr,
|
||||
.flags = 0,
|
||||
.codeSize = 0,
|
||||
.pCode = nullptr,
|
||||
};
|
||||
|
||||
std::vector<vk::ShaderModule> shader_modules;
|
||||
|
|
|
@ -72,7 +72,7 @@ struct TextureCacheRuntime {
|
|||
MemoryAllocator& memory_allocator;
|
||||
StagingBufferPool& staging_buffer_pool;
|
||||
BlitImageHelper& blit_image_helper;
|
||||
std::unordered_map<RenderPassKey, vk::RenderPass> renderpass_cache;
|
||||
std::unordered_map<RenderPassKey, vk::RenderPass> renderpass_cache{};
|
||||
|
||||
void Finish();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue