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

This commit is contained in:
Vilya Harvey
2019-08-01 11:10:01 -07:00
committed by omar
parent 6cf4743f17
commit 62143dff64
3 changed files with 9 additions and 1 deletions
+1
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);
};