------------------------------------------------------------------------------
| 766 | |
| 767 | //------------------------------------------------------------------------------ |
| 768 | void vtkOpenGLFramebufferObject::UnBind() |
| 769 | { |
| 770 | if (this->FBOIndex != 0) |
| 771 | { |
| 772 | this->Context->GetState()->vtkBindFramebuffer(GL_FRAMEBUFFER, nullptr); |
| 773 | } |
| 774 | } |
| 775 | |
| 776 | void vtkOpenGLFramebufferObject::UnBind(unsigned int mode) |
| 777 | { |
no test coverage detected