Skip to content

Commit 60ef427

Browse files
committed
[WebGL] blitOffscreenFramebuffer: handle already-deleted program
See comment for explanation. Fixes 23654. See the other PR for additional discussion: #23658 (comment)
1 parent d6a32b6 commit 60ef427

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/lib/libwebgl.js

+4
Original file line numberDiff line numberDiff line change
@@ -994,6 +994,10 @@ for (/**@suppress{duplicate}*/var i = 0; i <= {{{ GL_POOL_TEMP_BUFFERS_SIZE }}};
994994

995995
var prevProgram = gl.getParameter(0x8B8D /*GL_CURRENT_PROGRAM*/);
996996
gl.useProgram(context.blitProgram);
997+
// If prevProgram was already marked for deletion, then, since it was
998+
// still bound, it was not *actually* deleted. Unbinding it deletes it.
999+
// This makes it impossible to restore. Hope the app didn't need it....
1000+
if (!gl.isProgram(prevProgram)) prevProgram = null;
9971001

9981002
var prevVB = gl.getParameter(0x8894 /*GL_ARRAY_BUFFER_BINDING*/);
9991003
gl.bindBuffer(0x8892 /*GL_ARRAY_BUFFER*/, context.blitVB);

0 commit comments

Comments
 (0)