The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

a/vk: Fix typo in physical device feature chain

authored by

Ryan Pavlik and committed by
Jakob Bornecrantz
2af3798e d5d16954

+2 -1
+2 -1
src/xrt/auxiliary/vk/vk_helpers.c
··· 1378 1378 1379 1379 #ifdef VK_EXT_robustness2 1380 1380 if (vk->has_EXT_robustness2) { 1381 - physical_device_features.pNext = physical_device_features.pNext; 1381 + // Insert ourselves between physical_device_features and its previous pNext 1382 + robust_info.pNext = physical_device_features.pNext; 1382 1383 physical_device_features.pNext = (void *)&robust_info; 1383 1384 } 1384 1385 #endif