The open source OpenXR runtime
0
fork

Configure Feed

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

u/pacing: Fix logic error for selecting min frame period

+1 -1
+1 -1
src/xrt/auxiliary/util/u_pacing_app.c
··· 452 452 * depends on it's total frame time. Or we try to use the minimal frame 453 453 * period, aka the compositor's frame period. This will use more power. 454 454 */ 455 - if (!debug_get_bool_option_use_min_frame_period()) { 455 + if (debug_get_bool_option_use_min_frame_period()) { 456 456 period_ns = min_period(pa); 457 457 } else { 458 458 period_ns = calc_period(pa);