mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-02-03 12:28:07 +00:00
a/vk: Fix typo in physical device feature chain
This commit is contained in:
parent
d5d1695438
commit
2af3798e44
|
@ -1378,7 +1378,8 @@ filter_device_features(struct vk_bundle *vk,
|
|||
|
||||
#ifdef VK_EXT_robustness2
|
||||
if (vk->has_EXT_robustness2) {
|
||||
physical_device_features.pNext = physical_device_features.pNext;
|
||||
// Insert ourselves between physical_device_features and its previous pNext
|
||||
robust_info.pNext = physical_device_features.pNext;
|
||||
physical_device_features.pNext = (void *)&robust_info;
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue