Increase frequency of xrEffect repaints

This commit is contained in:
wheaney 2024-06-26 16:32:14 -07:00
parent 62b5475c9d
commit 468fe71ff9
1 changed files with 1 additions and 1 deletions

View File

@ -281,7 +281,7 @@ export const XREffect = GObject.registerClass({
super(params);
// target a slightly lower framerate than the monitor's refresh rate to prevent repainting too frequently
const frameTimeFramerate = this.target_framerate * 0.9;
const frameTimeFramerate = this.target_framerate * 1.25;
this._frametime = Math.floor(1000 / frameTimeFramerate);
this._is_display_distance_at_end = false;