diff options
| author | Valentin Popov <valentin@popov.link> | 2026-07-18 04:53:45 +0300 |
|---|---|---|
| committer | Valentin Popov <valentin@popov.link> | 2026-07-18 04:53:45 +0300 |
| commit | fd4be6c8253276e3a7f170b7d08312104a4ee7e0 (patch) | |
| tree | 9a63cb07c0eb519fd39871a6398f4ecf621f12bb /adapters | |
| parent | 3c44a12fc461eac785bd9201d0b5b755a323f51d (diff) | |
| download | fparkan-fd4be6c8253276e3a7f170b7d08312104a4ee7e0.tar.xz fparkan-fd4be6c8253276e3a7f170b7d08312104a4ee7e0.zip | |
fix(stage0): require Windows native smoke
Diffstat (limited to 'adapters')
| -rw-r--r-- | adapters/fparkan-render-vulkan/src/ffi/instance.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/adapters/fparkan-render-vulkan/src/ffi/instance.rs b/adapters/fparkan-render-vulkan/src/ffi/instance.rs index 50a056e..42b9bdb 100644 --- a/adapters/fparkan-render-vulkan/src/ffi/instance.rs +++ b/adapters/fparkan-render-vulkan/src/ffi/instance.rs @@ -32,7 +32,9 @@ impl VulkanInstanceConfig { Self { application_name: application_name.into(), required_extensions: Vec::new(), - enable_portability_enumeration: cfg!(target_os = "macos"), + // The runtime is Windows-only, so portability enumeration is not part of + // the supported instance contract. + enable_portability_enumeration: false, enable_validation: false, } } |
