------------------------------------------------------------------------------
| 1437 | |
| 1438 | //------------------------------------------------------------------------------ |
| 1439 | vtkPixelBufferObject* vtkOpenGLFramebufferObject::Download( |
| 1440 | int extent[4], int vtkType, int nComps, int oglType, int oglFormat) |
| 1441 | { |
| 1442 | vtkPixelBufferObject* pbo = vtkPixelBufferObject::New(); |
| 1443 | pbo->SetContext(this->Context); |
| 1444 | |
| 1445 | vtkOpenGLFramebufferObject::Download(extent, vtkType, nComps, oglType, oglFormat, pbo); |
| 1446 | |
| 1447 | return pbo; |
| 1448 | } |
| 1449 | //------------------------------------------------------------------------------ |
| 1450 | void vtkOpenGLFramebufferObject::Download( |
| 1451 | int extent[4], int vtkType, int nComps, int oglType, int oglFormat, vtkPixelBufferObject* pbo) |
no test coverage detected