------------------------------------------------------------------------------
| 1268 | |
| 1269 | //------------------------------------------------------------------------------ |
| 1270 | void vtkDualDepthPeelingPass::ClearFrontDestination() |
| 1271 | { |
| 1272 | TIME_FUNCTION(vtkDualDepthPeelingPass::ClearFrontDestination); |
| 1273 | annotate("ClearFrontDestination()"); |
| 1274 | this->ActivateDrawBuffer(this->FrontDestination); |
| 1275 | this->State->vtkglClearColor(0.f, 0.f, 0.f, 0.f); |
| 1276 | this->State->vtkglClear(GL_COLOR_BUFFER_BIT); |
| 1277 | } |
| 1278 | |
| 1279 | //------------------------------------------------------------------------------ |
| 1280 | void vtkDualDepthPeelingPass::CopyFrontSourceToFrontDestination() |
no test coverage detected