mirror of
https://github.com/gfx-rs/wgpu.git
synced 2026-04-22 03:02:01 -04:00
hal/vk: add physical device features for extensions (#2167)
This commit is contained in:
committed by
GitHub
parent
9a5dec2cf0
commit
6fc0587b2d
@@ -44,6 +44,15 @@ impl PhysicalDeviceFeatures {
|
||||
if let Some(ref mut feature) = self.imageless_framebuffer {
|
||||
info = info.push_next(feature);
|
||||
}
|
||||
if let Some(ref mut feature) = self.timeline_semaphore {
|
||||
info = info.push_next(feature);
|
||||
}
|
||||
if let Some(ref mut feature) = self.image_robustness {
|
||||
info = info.push_next(feature);
|
||||
}
|
||||
if let Some(ref mut feature) = self.robustness2 {
|
||||
info = info.push_next(feature);
|
||||
}
|
||||
info
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user