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

Commit 92bf3305 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
parent 72020985
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -363,6 +363,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 = vkEnumeratePhysicalDeviceGroups(vkinstance, &count,
                                           group_properties.data());
  if (result != VK_SUCCESS) {