fix: Intel crash on startup.
Some checks are pending
Build and Release / reuse (push) Waiting to run
Build and Release / clang-format (push) Waiting to run
Build and Release / get-info (push) Waiting to run
Build and Release / windows-sdl (push) Blocked by required conditions
Build and Release / windows-qt (push) Blocked by required conditions
Build and Release / macos-sdl (push) Blocked by required conditions
Build and Release / macos-qt (push) Blocked by required conditions
Build and Release / linux-sdl (push) Blocked by required conditions
Build and Release / linux-qt (push) Blocked by required conditions
Build and Release / linux-sdl-gcc (push) Blocked by required conditions
Build and Release / linux-qt-gcc (push) Blocked by required conditions
Build and Release / pre-release (push) Blocked by required conditions

This commit is contained in:
squidbus 2025-04-23 11:09:04 -07:00
parent 4ecdcf77d1
commit ce3aded3e5
2 changed files with 6 additions and 4 deletions

View file

@ -521,9 +521,11 @@ void Instance::CollectDeviceParameters() {
LOG_INFO(Render_Vulkan, "GPU_Vulkan_Extensions: {}", extensions); LOG_INFO(Render_Vulkan, "GPU_Vulkan_Extensions: {}", extensions);
} }
void Instance::CollectToolingInfo() { void Instance::CollectToolingInfo() const {
if (GetDriverID() == vk::DriverId::eAmdProprietary) { if (driver_id == vk::DriverId::eAmdProprietary ||
// Currently causes issues with Reshade on AMD proprietary, disabled until fix released. driver_id == vk::DriverId::eIntelProprietaryWindows) {
// AMD: Causes issues with Reshade.
// Intel: Causes crash on start.
return; return;
} }
const auto [tools_result, tools] = physical_device.getToolProperties(); const auto [tools_result, tools] = physical_device.getToolProperties();

View file

@ -311,7 +311,7 @@ private:
/// Collects telemetry information from the device. /// Collects telemetry information from the device.
void CollectDeviceParameters(); void CollectDeviceParameters();
void CollectToolingInfo(); void CollectToolingInfo() const;
/// Gets the supported feature flags for a format. /// Gets the supported feature flags for a format.
[[nodiscard]] vk::FormatFeatureFlags2 GetFormatFeatureFlags(vk::Format format) const; [[nodiscard]] vk::FormatFeatureFlags2 GetFormatFeatureFlags(vk::Format format) const;