------------------------------------------------------------------------------
| 1404 | |
| 1405 | //------------------------------------------------------------------------------ |
| 1406 | vtkPixelBufferObject* vtkOpenGLFramebufferObject::DownloadColor3(int extent[4], int vtkType) |
| 1407 | { |
| 1408 | assert(this->Context); |
| 1409 | |
| 1410 | return this->Download(extent, vtkType, 3, this->GetOpenGLType(vtkType), GL_RGB); |
| 1411 | } |
| 1412 | |
| 1413 | //------------------------------------------------------------------------------ |
| 1414 | vtkPixelBufferObject* vtkOpenGLFramebufferObject::DownloadColor1( |
nothing calls this directly
no test coverage detected