hal/vk: add physical device features for extensions (#2167)

This commit is contained in:
Markus Siglreithmaier
2021-11-09 15:59:41 +01:00
committed by GitHub
parent 9a5dec2cf0
commit 6fc0587b2d

View File

@@ -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
}