The open source OpenXR runtime
0
fork

Configure Feed

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

u/pacing: Improve comments

+7 -2
+7 -2
src/xrt/auxiliary/util/u_pacing_compositor_fake.c
··· 29 29 * 30 30 */ 31 31 32 - 32 + /*! 33 + * A very simple pacer that tries it best to pace a compositor. Used when the 34 + * compositor can't get any good or limited feedback from the presentation 35 + * engine about timing. 36 + */ 33 37 struct fake_timing 34 38 { 35 39 struct u_pacing_compositor base; ··· 51 55 */ 52 56 struct u_var_draggable_f32 present_to_display_offset_ms; 53 57 54 - // The amount of time that the application needs to render frame. 58 + //! The amount of time that the application needs to render frame. 55 59 uint64_t comp_time_ns; 56 60 61 + //! This won't run out, trust me. 57 62 int64_t frame_id_generator; 58 63 }; 59 64