------------------------------------------------------------------------------
| 1388 | |
| 1389 | //------------------------------------------------------------------------------ |
| 1390 | vtkPixelBufferObject* vtkOpenGLFramebufferObject::DownloadDepth(int extent[4], int vtkType) |
| 1391 | { |
| 1392 | assert(this->Context); |
| 1393 | |
| 1394 | return this->Download(extent, vtkType, 1, this->GetOpenGLType(vtkType), GL_DEPTH_COMPONENT); |
| 1395 | } |
| 1396 | |
| 1397 | //------------------------------------------------------------------------------ |
| 1398 | vtkPixelBufferObject* vtkOpenGLFramebufferObject::DownloadColor4(int extent[4], int vtkType) |
nothing calls this directly
no test coverage detected