1
0

Merge pull request #1 from Verdi/fix/quest-stereo-rendering

Fix stereo rendering glitches on Meta Quest browsers
This commit is contained in:
Michael Verdi
2026-01-26 18:23:51 -06:00
committed by GitHub

View File

@@ -428,25 +428,20 @@ function init() {
return;
}
const xrCamera = renderer.xr.getCamera();
// Use view matrix eye offset for reliable stereo detection
// This works consistently across Quest Browser updates and Safari/VisionOS
// Left eye has negative X offset, right eye has positive X offset
const viewMatrix = activeCamera.matrixWorldInverse;
const eyeOffsetX = viewMatrix.elements[12];
if (xrCamera && xrCamera.cameras && xrCamera.cameras.length >= 2) {
if (activeCamera === xrCamera.cameras[0]) {
material.map.offset.x = 0;
} else if (activeCamera === xrCamera.cameras[1]) {
material.map.offset.x = 0.5;
} else {
material.map.offset.x = 0;
}
material.map.repeat.x = 0.5;
if (eyeOffsetX < 0) {
// Left eye - show left half of SBS video
material.map.offset.x = 0;
} else {
const projMatrixEl8 = activeCamera.projectionMatrix.elements[8];
if (projMatrixEl8 < -0.0001) {
material.map.offset.x = 0; material.map.repeat.x = 0.5;
} else if (projMatrixEl8 > 0.0001) {
material.map.offset.x = 0.5; material.map.repeat.x = 0.5;
}
// Right eye - show right half of SBS video
material.map.offset.x = 0.5;
}
material.map.repeat.x = 0.5;
};
// Initialize 2D camera
@@ -1731,6 +1726,12 @@ function renderXR(timestamp, frame) {
}
}
try {
// Ensure video texture is synchronized with render loop
// This prevents glitches from texture update timing issues on Quest browsers
if (videoTexture && video && !video.paused && !video.ended) {
videoTexture.needsUpdate = true;
}
handleControllerInteractions();
renderer.render(scene, camera);
} catch (error) {