Skip to content

Commit

Permalink
Fix ordering that broke extension property reads
Browse files Browse the repository at this point in the history
  • Loading branch information
SaschaWillems committed Sep 1, 2022
1 parent 8e9fe8b commit bebad73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vulkancapsviewer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ extern "C" const char *getWorkingFolderForiOS(void);

using std::to_string;

const QString VulkanCapsViewer::version = "3.24";
const QString VulkanCapsViewer::version = "3.25";
const QString VulkanCapsViewer::reportVersion = "3.2";

OSInfo getOperatingSystem()
Expand Down Expand Up @@ -799,9 +799,9 @@ void VulkanCapsViewer::getGPUinfo(VulkanDeviceInfo *GPU, uint32_t id, VkPhysical

GPU->id = id;
GPU->device = device;
GPU->readExtensions();
GPU->readPhysicalProperties();
GPU->readLayers();
GPU->readExtensions();
GPU->readQueueFamilies(surface);
GPU->readPhysicalFeatures();
GPU->readPhysicalLimits();
Expand Down

0 comments on commit bebad73

Please sign in to comment.