------------------------------------------------------------------------------
| 921 | |
| 922 | //------------------------------------------------------------------------------ |
| 923 | void vtkOpenGLFramebufferObject::RemoveColorAttachments(unsigned int num) |
| 924 | { |
| 925 | for (unsigned int i = 0; i < num; ++i) |
| 926 | { |
| 927 | this->RemoveColorAttachment(i); |
| 928 | } |
| 929 | } |
| 930 | |
| 931 | void vtkOpenGLFramebufferObject::RemoveColorAttachment(unsigned int index) |
| 932 | { |
no test coverage detected