We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6a32b6 commit 60ef427Copy full SHA for 60ef427
src/lib/libwebgl.js
@@ -994,6 +994,10 @@ for (/**@suppress{duplicate}*/var i = 0; i <= {{{ GL_POOL_TEMP_BUFFERS_SIZE }}};
994
995
var prevProgram = gl.getParameter(0x8B8D /*GL_CURRENT_PROGRAM*/);
996
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;
1001
1002
var prevVB = gl.getParameter(0x8894 /*GL_ARRAY_BUFFER_BINDING*/);
1003
gl.bindBuffer(0x8892 /*GL_ARRAY_BUFFER*/, context.blitVB);
0 commit comments