The open source OpenXR runtime
0
fork

Configure Feed

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

doc: Fix broken link

+5 -5
+1 -1
doc/mainpage.md
··· 19 19 * @ref vulkan-extensions 20 20 * @ref writing-driver 21 21 * @ref ipc-design 22 - * @ref frame-timing 22 + * @ref frame-pacing 23 23 * @ref tracing 24 24 * @ref implementing-extension 25 25
+4 -4
src/xrt/auxiliary/util/u_pacing.h
··· 70 70 * @param[out] out_predicted_display_period_ns Display period that we are running on. 71 71 * @param[out] out_min_display_period_ns The fastest theoretical display period. 72 72 * 73 - * @see @ref frame-timing. 73 + * @see @ref frame-pacing. 74 74 */ 75 75 void (*predict)(struct u_pacing_compositor *upc, 76 76 int64_t *out_frame_id, ··· 92 92 * @param[in] frame_id The frame ID to record for. 93 93 * @param[in] when_ns The timestamp of the event. 94 94 * 95 - * @see @ref frame-timing. 95 + * @see @ref frame-pacing. 96 96 */ 97 97 void (*mark_point)(struct u_pacing_compositor *upc, 98 98 enum u_timing_point point, ··· 119 119 * @param[in] present_margin_ns How "early" present happened compared to when it needed to happen in 120 120 * order to hit @p earliestPresentTime. 121 121 * 122 - * @see @ref frame-timing. 122 + * @see @ref frame-pacing. 123 123 */ 124 124 void (*info)(struct u_pacing_compositor *upc, 125 125 int64_t frame_id, ··· 260 260 * 261 261 * @param upa Render timing helper. 262 262 * @param[in] frame_id The frame ID to record for. 263 - * @see @ref frame-timing. 263 + * @see @ref frame-pacing. 264 264 */ 265 265 void (*mark_point)(struct u_pacing_app *upa, int64_t frame_id, enum u_timing_point point, uint64_t when_ns); 266 266