You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/renderer/webgl/WebGLRenderer.js
+17-4Lines changed: 17 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1547,13 +1547,15 @@ var WebGLRenderer = new Class({
1547
1547
* @param {WebGLFramebuffer} framebuffer - The framebuffer that needs to be bound.
1548
1548
* @param {boolean} [updateScissor=false] - If a framebuffer is given, set the gl scissor to match the frame buffer size? Or, if `null` given, pop the scissor from the stack.
1549
1549
* @param {boolean} [resetTextures=false] - Should the WebGL Textures be reset after the new framebuffer is bound?
1550
+
* @param {boolean} [setViewport=true] - Should the WebGL viewport be set?
* @param {boolean} [updateScissor=false] - If a framebuffer is given, set the gl scissor to match the frame buffer size? Or, if `null` given, pop the scissor from the stack.
1620
+
* @param {boolean} [resetTextures=true] - Should the WebGL Textures be reset after the new framebuffer is bound?
1621
+
* @param {boolean} [setViewport=true] - Should the WebGL viewport be set?
1622
+
*
1614
1623
* @return {WebGLFramebuffer} The Framebuffer that was set, or `null` if there aren't any more in the stack.
0 commit comments