mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-12 21:10:42 +00:00
Initialize device properties that might not all be filled out to 0
This commit is contained in:
@@ -664,9 +664,9 @@ bool WrappedVulkan::Serialise_vkEnumeratePhysicalDevices(SerialiserType &ser, Vk
|
||||
uint32_t memIdxMap[VK_MAX_MEMORY_TYPES] = {0};
|
||||
// not used at the moment but useful for reference and might be used
|
||||
// in the future
|
||||
VkPhysicalDeviceProperties physProps;
|
||||
VkPhysicalDeviceMemoryProperties memProps;
|
||||
VkPhysicalDeviceFeatures physFeatures;
|
||||
VkPhysicalDeviceProperties physProps = {};
|
||||
VkPhysicalDeviceMemoryProperties memProps = {};
|
||||
VkPhysicalDeviceFeatures physFeatures = {};
|
||||
uint32_t queueCount = 0;
|
||||
VkQueueFamilyProperties queueProps[16] = {};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user