We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71f528e commit 465c491Copy full SHA for 465c491
Packages/webxr/Runtime/Plugins/WebGL/webxr.jspre
@@ -62,6 +62,7 @@ void main()
62
return;
63
}`
64
GL.getSourceOld = GL.getSource;
65
+ // Fix for an issue of wrong values in draw display shader
66
GL.getSource = function (shader, count, string, length) {
67
var source = GL.getSourceOld(shader, count, string, length);
68
if (shaderBug == source) {
@@ -666,6 +667,7 @@ void main()
666
667
return thisXRMananger.xrSession.requestAnimationFrame(function (time, xrFrame) {
668
thisXRMananger.animate(xrFrame);
669
func(time);
670
+ // Fix for an issue of switch to setTimeout instead of rAF
671
if (thisXRMananger.BrowserObject.mainLoop.timingMode == 0) {
672
_emscripten_set_main_loop_timing(1, 1);
673
}
0 commit comments