Reputation: 3521
How to pause a shader in frame in order to not influence to other render parts?
Upvotes: 2
Views: 420
Reputation: 59811
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);
Upvotes: 3