The open source OpenXR runtime
0
fork

Configure Feed

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

aux/vk: Print all used device extensions in XRT_LOG=trace

+3 -1
+3 -1
src/xrt/auxiliary/vk/vk_helpers.c
··· 1232 1232 free(props); 1233 1233 return false; 1234 1234 } 1235 + U_LOG_T("Using required device ext %s", ext); 1235 1236 device_extensions[i] = ext; 1236 1237 } 1237 1238 ··· 1239 1240 for (uint32_t i = 0; i < num_optional_device_extensions; i++) { 1240 1241 const char *ext = optional_device_extensions[i]; 1241 1242 if (vk_check_extension(vk, props, num_props, ext)) { 1242 - U_LOG_D("Using optional ext %s", ext); 1243 + U_LOG_D("Using optional device ext %s", ext); 1243 1244 device_extensions[num_device_extensions++] = ext; 1244 1245 } else { 1246 + U_LOG_T("NOT using optional device ext %s", ext); 1245 1247 continue; 1246 1248 } 1247 1249 }