Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 49609ed0 authored by Yiwei Zhang's avatar Yiwei Zhang
Browse files

vkjson: fix VkPhysicalDeviceGroupProperties init

Bug: 184267007
Test: adb shell cmd gpu vkjson
Change-Id: I8ed3c99b3d2df34294e8e450ca1ec5ce1cee3ac7
Merged-In: I8ed3c99b3d2df34294e8e450ca1ec5ce1cee3ac7
parent 0e046dd2
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -433,6 +433,10 @@ VkJsonInstance VkJsonGetInstance() {
    VkJsonDeviceGroup device_group;
    std::vector<VkPhysicalDeviceGroupProperties> group_properties;
    group_properties.resize(count);
    for (auto& properties : group_properties) {
      properties.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_GROUP_PROPERTIES;
      properties.pNext = nullptr;
    }
    result = (*vkpEnumeratePhysicalDeviceGroups)(vkinstance, &count,
                                                 group_properties.data());
    if (result != VK_SUCCESS) {