/*========================================================================= Program: Visualization Toolkit Module: TestGPURayCastDepthPeeling.cxx Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notice for more information. =========================================================================*/ /** * Tests depth peeling pass with volume rendering. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include int TestGPURayCastDepthPeelingOpaque(int argc, char* argv[]) { // Volume peeling is only supported through the dual depth peeling algorithm. // If the current system only supports the legacy peeler, skip this test: vtkNew renWin; vtkNew iren; iren->SetRenderWindow(renWin); renWin->Render(); // Create the context vtkNew ren; renWin->AddRenderer(ren); vtkOpenGLRenderer* oglRen = vtkOpenGLRenderer::SafeDownCast(ren); assert(oglRen); // This test should only be enabled for OGL2 backend. // This will print details about why depth peeling is unsupported: oglRen->SetDebug(true); bool supported = oglRen->IsDualDepthPeelingSupported(); oglRen->SetDebug(false); if (!supported) { std::cerr << "Skipping test; volume peeling not supported.\n"; return VTK_SKIP_RETURN_CODE; } double scalarRange[2]; vtkNew outlineActor; vtkNew outlineMapper; vtkNew volumeMapper; vtkNew reader; const char* volumeFile = vtkTestUtilities::ExpandDataFileName(argc, argv, "Data/vase_1comp.vti"); reader->SetFileName(volumeFile); delete[] volumeFile; volumeMapper->SetInputConnection(reader->GetOutputPort()); // Add outline filter vtkNew outlineFilter; outlineFilter->SetInputConnection(reader->GetOutputPort()); outlineMapper->SetInputConnection(outlineFilter->GetOutputPort()); outlineActor->SetMapper(outlineMapper); volumeMapper->GetInput()->GetScalarRange(scalarRange); volumeMapper->SetSampleDistance(0.1); volumeMapper->SetAutoAdjustSampleDistances(0); volumeMapper->SetBlendModeToComposite(); renWin->SetMultiSamples(0); renWin->SetSize(400, 400); ren->SetBackground(0.0, 0.0, 0.0); vtkNew scalarOpacity; scalarOpacity->AddPoint(50, 0.0); scalarOpacity->AddPoint(75, 1.0); vtkNew volumeProperty; volumeProperty->ShadeOn(); volumeProperty->SetInterpolationType(VTK_LINEAR_INTERPOLATION); volumeProperty->SetScalarOpacity(scalarOpacity); vtkSmartPointer colorTransferFunction = volumeProperty->GetRGBTransferFunction(0); colorTransferFunction->RemoveAllPoints(); colorTransferFunction->AddRGBPoint(scalarRange[0], 0.6, 0.6, 0.6); vtkSmartPointer volume = vtkSmartPointer::New(); volume->SetMapper(volumeMapper); volume->SetProperty(volumeProperty); int dims[3]; double spacing[3], center[3], origin[3]; reader->Update(); vtkSmartPointer im = reader->GetOutput(); im->GetDimensions(dims); im->GetOrigin(origin); im->GetSpacing(spacing); // Add sphere 1 center[0] = origin[0] + spacing[0] * dims[0] / 2.0; center[1] = origin[1] + spacing[1] * dims[1] / 2.0; center[2] = origin[2] + spacing[2] * dims[2] / 2.0; vtkNew sphereSource; sphereSource->SetCenter(center); sphereSource->SetRadius(dims[1] / 3.0); vtkNew sphereActor; vtkProperty* sphereProperty = sphereActor->GetProperty(); sphereProperty->SetColor(0.5, 0.9, 0.7); sphereProperty->SetOpacity(0.3); vtkNew sphereMapper; sphereMapper->SetInputConnection(sphereSource->GetOutputPort()); sphereActor->SetMapper(sphereMapper); // Add sphere 2 center[0] += 15.0; center[1] += 15.0; center[2] += 15.0; vtkNew sphereSource2; sphereSource2->SetCenter(center); sphereSource2->SetRadius(dims[1] / 3.0); vtkNew sphereActor2; sphereProperty = sphereActor2->GetProperty(); sphereProperty->SetColor(0.9, 0.4, 0.1); sphereProperty->SetOpacity(1.0); vtkNew sphereMapper2; sphereMapper2->SetInputConnection(sphereSource2->GetOutputPort()); sphereActor2->SetMapper(sphereMapper2); // Add actors ren->AddVolume(volume); ren->AddActor(outlineActor); ren->AddActor(sphereActor); ren->AddActor(sphereActor2); // Configure depth peeling ren->SetUseDepthPeeling(1); ren->SetOcclusionRatio(0.0); ren->SetMaximumNumberOfPeels(17); ren->SetUseDepthPeelingForVolumes(true); vtkNew style; renWin->GetInteractor()->SetInteractorStyle(style); ren->ResetCamera(); ren->GetActiveCamera()->Azimuth(-55); ren->GetActiveCamera()->Elevation(35); ren->GetActiveCamera()->OrthogonalizeViewUp(); renWin->Render(); iren->Initialize(); int retVal = vtkRegressionTestImage(renWin); if (retVal == vtkRegressionTester::DO_INTERACTOR) { iren->Start(); } return !retVal; }