Backends: Vulkan: Added support for specifying multisample count. (#2705, #2706)

This commit is contained in:
Vilya Harvey
2019-07-31 19:50:50 +01:00
committed by omar
parent 6cf4743f17
commit 62143dff64
3 changed files with 9 additions and 1 deletions

View File

@ -37,6 +37,7 @@ struct ImGui_ImplVulkan_InitInfo
VkDescriptorPool DescriptorPool;
uint32_t MinImageCount; // >= 2
uint32_t ImageCount; // >= MinImageCount
VkSampleCountFlagBits MSAASamples; // >= VK_SAMPLE_COUNT_1_BIT
const VkAllocationCallbacks* Allocator;
void (*CheckVkResultFn)(VkResult err);
};