The open source OpenXR runtime

st/oxr: Log all quirks

Part-of: <https://gitlab.freedesktop.org/monado/monado/-/merge_requests/2312>

authored by

Christoph Haag and committed by
Marge Bot
7150279e f6722271

+19 -14
+19 -14
src/xrt/state_trackers/oxr/oxr_instance.c
··· 418 418 "\tappinfo.detected.engine.name: %s\n" 419 419 "\tappinfo.detected.engine.version: %i.%i.%i\n" 420 420 "\tquirks.disable_vulkan_format_depth_stencil: %s\n" 421 - "\tquirks.no_validation_error_in_create_ref_space: %s", 422 - createInfo->applicationInfo.applicationName, // 423 - createInfo->applicationInfo.applicationVersion, // 424 - createInfo->applicationInfo.engineName, // 425 - createInfo->applicationInfo.engineVersion, // 426 - XR_VERSION_MAJOR(createInfo->applicationInfo.apiVersion), // 427 - XR_VERSION_MINOR(createInfo->applicationInfo.apiVersion), // 428 - XR_VERSION_PATCH(createInfo->applicationInfo.apiVersion), // 429 - inst->appinfo.detected.engine.name, // 430 - inst->appinfo.detected.engine.major, // 431 - inst->appinfo.detected.engine.minor, // 432 - inst->appinfo.detected.engine.patch, // 433 - inst->quirks.disable_vulkan_format_depth_stencil ? "true" : "false", // 434 - inst->quirks.no_validation_error_in_create_ref_space ? "true" : "false"); // 421 + "\tquirks.no_validation_error_in_create_ref_space: %s\n" 422 + "\tquirks.skip_end_session: %s\n" 423 + "\tquirks.parallel_views: %s\n", 424 + createInfo->applicationInfo.applicationName, // 425 + createInfo->applicationInfo.applicationVersion, // 426 + createInfo->applicationInfo.engineName, // 427 + createInfo->applicationInfo.engineVersion, // 428 + XR_VERSION_MAJOR(createInfo->applicationInfo.apiVersion), // 429 + XR_VERSION_MINOR(createInfo->applicationInfo.apiVersion), // 430 + XR_VERSION_PATCH(createInfo->applicationInfo.apiVersion), // 431 + inst->appinfo.detected.engine.name, // 432 + inst->appinfo.detected.engine.major, // 433 + inst->appinfo.detected.engine.minor, // 434 + inst->appinfo.detected.engine.patch, // 435 + inst->quirks.disable_vulkan_format_depth_stencil ? "true" : "false", // 436 + inst->quirks.no_validation_error_in_create_ref_space ? "true" : "false", // 437 + inst->quirks.skip_end_session ? "true" : "false", // 438 + inst->quirks.parallel_views ? "true" : "false" // 439 + ); // 435 440 436 441 debug_print_devices(log, sys); 437 442