aboutsummaryrefslogtreecommitdiff
path: root/adapters/fparkan-render-vulkan/src
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2026-07-18 04:53:45 +0300
committerValentin Popov <valentin@popov.link>2026-07-18 04:53:45 +0300
commitfd4be6c8253276e3a7f170b7d08312104a4ee7e0 (patch)
tree9a63cb07c0eb519fd39871a6398f4ecf621f12bb /adapters/fparkan-render-vulkan/src
parent3c44a12fc461eac785bd9201d0b5b755a323f51d (diff)
downloadfparkan-fd4be6c8253276e3a7f170b7d08312104a4ee7e0.tar.xz
fparkan-fd4be6c8253276e3a7f170b7d08312104a4ee7e0.zip
fix(stage0): require Windows native smoke
Diffstat (limited to 'adapters/fparkan-render-vulkan/src')
-rw-r--r--adapters/fparkan-render-vulkan/src/ffi/instance.rs4
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,
}
}