OpenGL: How to pause a shader work
How to pause a shader in frame in order to not开发者_Python百科 influence to other render parts?
Unless I misunderstood you want to switch back to fixed pipeline functionality for rendering some other parts of the scene.
To unbind any shader currently in use issue glUseProgam(0);
精彩评论