------------------------------------------------------------------------------
| 1172 | |
| 1173 | //------------------------------------------------------------------------------ |
| 1174 | vtkTextureObject* vtkLineIntegralConvolution2D::Execute( |
| 1175 | vtkTextureObject* vectorTex, vtkTextureObject* noiseTex) |
| 1176 | { |
| 1177 | // execute over the entire vector field, no guard pixels are present |
| 1178 | // parallel results will be incorrect. |
| 1179 | |
| 1180 | vtkPixelExtent vectorTexExtent(vectorTex->GetWidth(), vectorTex->GetHeight()); |
| 1181 | |
| 1182 | return this->Execute(vectorTexExtent.GetData(), vectorTex, noiseTex); |
| 1183 | } |
| 1184 | |
| 1185 | //------------------------------------------------------------------------------ |
| 1186 | vtkTextureObject* vtkLineIntegralConvolution2D::Execute( |
no test coverage detected