diff options
| author | Luis Jose-Romero <luis.romero@partner.samsung.com> | 2024-02-09 17:10:13 +0000 |
|---|---|---|
| committer | Charles Giessen <46324611+charles-lunarg@users.noreply.github.com> | 2025-03-27 09:15:12 -0600 |
| commit | da7c7db28d36f66dff88f00412dceb480ccc77ea (patch) | |
| tree | 4f19b653625e2cc068e3cfbe55a758e665e7a141 | |
| parent | 32ee3e6e333a4bc4064fe64cfdfdcf6e71a92743 (diff) | |
| download | usermoji-da7c7db28d36f66dff88f00412dceb480ccc77ea.tar.xz | |
vulkaninfo: Fix unreported extension formats
Changes the format support check to compare against the
device extensions instead of the instance extensions.
| -rw-r--r-- | vulkaninfo/vulkaninfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vulkaninfo/vulkaninfo.h b/vulkaninfo/vulkaninfo.h index 0e96c9ba..cf0a9bbf 100644 --- a/vulkaninfo/vulkaninfo.h +++ b/vulkaninfo/vulkaninfo.h @@ -1836,7 +1836,7 @@ struct AppGpu { // True if this extension is present if (format_range.extension_name != nullptr) { - return inst.CheckExtensionEnabled(format_range.extension_name); + return CheckPhysicalDeviceExtensionIncluded(format_range.extension_name); } // True if standard and supported by both this instance and this GPU |
