The open source OpenXR runtime
0
fork

Configure Feed

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

u/pacing: Add more detailed log printout to "fake" pacer

As suggested by Jakob Bornecrantz in mr!2526 discussion

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

authored by

xantoz and committed by
Marge Bot
723fa681 91f52c32

+8 -1
+8 -1
src/xrt/auxiliary/util/u_pacing_compositor_fake.c
··· 506 506 // Return value. 507 507 *out_upc = &ft->base; 508 508 509 - UPC_LOG_I("Created fake timing"); 509 + UPC_LOG_I( 510 + "Created pacer (non-feedback version aka \"fake\")" 511 + "\n\testimated_frame_period: %fms" 512 + "\n\tpercentage: %f%%" 513 + "\n\tmin_comp_time: %fms" 514 + "\n\tcomp_time: %fms", 515 + time_ns_to_ms_f(estimated_frame_period_ns), comp_time_fraction_percent, min_comp_time_ms_f, 516 + time_ns_to_ms_f(ft->comp_time_ns)); 510 517 511 518 return XRT_SUCCESS; 512 519 }