| 220 | } |
| 221 | |
| 222 | void vtkOpenGLVertexArrayObject::ShaderProgramChanged() |
| 223 | { |
| 224 | this->Release(); |
| 225 | |
| 226 | Private::AttributeMap::iterator it; |
| 227 | for (it = this->Internal->Attributes.begin(); it != this->Internal->Attributes.end(); ++it) |
| 228 | { |
| 229 | it->second.clear(); |
| 230 | } |
| 231 | this->Internal->Attributes.clear(); |
| 232 | |
| 233 | this->Internal->HandleProgram = 0; |
| 234 | } |
| 235 | |
| 236 | void vtkOpenGLVertexArrayObject::ReleaseGraphicsResources() |
| 237 | { |
no test coverage detected