Home
last modified time | relevance | path

Searched refs:volumeMapper (Results 1 – 25 of 254) sorted by relevance

1234567891011

/dports/math/vtk9/VTK-9.1.0/Rendering/Volume/Testing/Cxx/
H A DTestGPURayCastCropping.cxx88 vtkGPUVolumeRayCastMapper* volumeMapper[2][4]; in TestGPURayCastCropping() local
97 volumeMapper[i][j]->SetSampleDistance(0.25); in TestGPURayCastCropping()
98 volumeMapper[i][j]->CroppingOn(); in TestGPURayCastCropping()
99 volumeMapper[i][j]->SetAutoAdjustSampleDistances(0); in TestGPURayCastCropping()
103 volume->SetMapper(volumeMapper[i][j]); in TestGPURayCastCropping()
104 volumeMapper[i][j]->Delete(); in TestGPURayCastCropping()
142 volumeMapper[0][1]->SetCroppingRegionFlagsToCross(); in TestGPURayCastCropping()
144 volumeMapper[0][3]->SetCroppingRegionFlags(24600); in TestGPURayCastCropping()
147 volumeMapper[1][0]->SetCroppingRegionFlagsToFence(); in TestGPURayCastCropping()
149 volumeMapper[1][2]->SetCroppingRegionFlags(1); in TestGPURayCastCropping()
[all …]
H A DTestGPURayCastCropping1.cxx39 vtkNew<vtkGPUVolumeRayCastMapper> volumeMapper; in TestGPURayCastCropping1() local
40 volumeMapper->AutoAdjustSampleDistancesOff(); in TestGPURayCastCropping1()
41 volumeMapper->SetSampleDistance(0.05); in TestGPURayCastCropping1()
47 volumeMapper->SetInputConnection(reader->GetOutputPort()); in TestGPURayCastCropping1()
48 volumeMapper->GetInput()->GetScalarRange(scalarRange); in TestGPURayCastCropping1()
49 volumeMapper->SetBlendModeToComposite(); in TestGPURayCastCropping1()
82 volumeMapper->SetCroppingRegionPlanes(10.0, 20.0, 10.0, 20.0, 10.0, 20.0); in TestGPURayCastCropping1()
83 volumeMapper->SetCroppingRegionFlagsToFence(); in TestGPURayCastCropping1()
84 volumeMapper->CroppingOn(); in TestGPURayCastCropping1()
88 volume->SetMapper(volumeMapper); in TestGPURayCastCropping1()
H A DTestGPURayCastVolumeDepthPass.cxx42 vtkNew<vtkGPUVolumeRayCastMapper> volumeMapper; in TestGPURayCastVolumeDepthPass() local
50 volumeMapper->UseDepthPassOn(); in TestGPURayCastVolumeDepthPass()
51 volumeMapper->GetDepthPassContourValues()->SetValue(0, 50.0); in TestGPURayCastVolumeDepthPass()
54 volumeMapper->SetInputConnection(reader->GetOutputPort()); in TestGPURayCastVolumeDepthPass()
55 volumeMapper->GetInput()->GetScalarRange(scalarRange); in TestGPURayCastVolumeDepthPass()
56 volumeMapper->SetSampleDistance(0.1); in TestGPURayCastVolumeDepthPass()
57 volumeMapper->SetAutoAdjustSampleDistances(0); in TestGPURayCastVolumeDepthPass()
58 volumeMapper->SetBlendModeToComposite(); in TestGPURayCastVolumeDepthPass()
90 volume->SetMapper(volumeMapper); in TestGPURayCastVolumeDepthPass()
96 int valid = volumeMapper->IsRenderSupported(renWin, volumeProperty); in TestGPURayCastVolumeDepthPass()
H A DTestGPURayCastFourComponentsAverage.cxx51 vtkGPUVolumeRayCastMapper* volumeMapper; in TestGPURayCastFourComponentsAverage() local
55 volumeMapper = vtkGPUVolumeRayCastMapper::New(); in TestGPURayCastFourComponentsAverage()
56 volumeMapper->SetBlendModeToAverageIntensity(); in TestGPURayCastFourComponentsAverage()
57 volumeMapper->SetAverageIPScalarRange(20, 300); in TestGPURayCastFourComponentsAverage()
58 volumeMapper->SetInputConnection(reader->GetOutputPort()); in TestGPURayCastFourComponentsAverage()
72 volume->SetMapper(volumeMapper); in TestGPURayCastFourComponentsAverage()
76 int valid = volumeMapper->IsRenderSupported(renWin, volumeProperty); in TestGPURayCastFourComponentsAverage()
101 volumeMapper->Delete(); in TestGPURayCastFourComponentsAverage()
H A DTestSmartVolumeMapperVolumeUpdate.cxx40 vtkNew<vtkSmartVolumeMapper> volumeMapper; in TestSmartVolumeMapperVolumeUpdate() local
53 volumeMapper->SetInputData(readerData); in TestSmartVolumeMapperVolumeUpdate()
55 volumeMapper->GetInput()->GetScalarRange(scalarRange); in TestSmartVolumeMapperVolumeUpdate()
56 volumeMapper->SetSampleDistance(0.1); in TestSmartVolumeMapperVolumeUpdate()
57 volumeMapper->SetAutoAdjustSampleDistances(0); in TestSmartVolumeMapperVolumeUpdate()
58 volumeMapper->SetBlendModeToComposite(); in TestSmartVolumeMapperVolumeUpdate()
90 volume->SetMapper(volumeMapper); in TestSmartVolumeMapperVolumeUpdate()
97 volumeMapper->SetInputData(waveletData); in TestSmartVolumeMapperVolumeUpdate()
H A DTestGPURayCastAdditive.cxx93 vtkGPUVolumeRayCastMapper* volumeMapper; in TestGPURayCastAdditive() local
97 volumeMapper = vtkGPUVolumeRayCastMapper::New(); in TestGPURayCastAdditive()
98 volumeMapper->SetAutoAdjustSampleDistances(0); in TestGPURayCastAdditive()
99 volumeMapper->SetSampleDistance(0.2); in TestGPURayCastAdditive()
100 volumeMapper->SetBlendModeToComposite(); // composite first in TestGPURayCastAdditive()
101 volumeMapper->SetInputConnection(t->GetOutputPort()); in TestGPURayCastAdditive()
128 volume->SetMapper(volumeMapper); in TestGPURayCastAdditive()
132 int valid = volumeMapper->IsRenderSupported(renWin, volumeProperty); in TestGPURayCastAdditive()
143 volumeMapper->SetBlendModeToAdditive(); in TestGPURayCastAdditive()
159 volumeMapper->Delete(); in TestGPURayCastAdditive()
H A DTestProjectedTetrahedraVectorComponent.cxx44 vtkNew<vtkProjectedTetrahedraMapper> volumeMapper; in TestProjectedTetrahedraVectorComponent() local
45 if (!volumeMapper->IsSupported(renWin)) in TestProjectedTetrahedraVectorComponent()
47 volumeMapper->Delete(); in TestProjectedTetrahedraVectorComponent()
91 volumeMapper->SetInputData(dataset); in TestProjectedTetrahedraVectorComponent()
92 volumeMapper->SetScalarModeToUsePointFieldData(); in TestProjectedTetrahedraVectorComponent()
93 volumeMapper->SetArrayAccessMode(VTK_GET_ARRAY_BY_NAME); in TestProjectedTetrahedraVectorComponent()
94 volumeMapper->SelectScalarArray("coords"); in TestProjectedTetrahedraVectorComponent()
99 volume->SetMapper(volumeMapper); in TestProjectedTetrahedraVectorComponent()
H A DTestGPURayCastVolumeUpdate.cxx216 vtkNew<vtkGPUVolumeRayCastMapper> volumeMapper; in TestGPURayCastVolumeUpdate() local
223 volumeMapper->SetInputConnection(reader->GetOutputPort()); in TestGPURayCastVolumeUpdate()
231 volumeMapper->GetInput()->GetScalarRange(scalarRange); in TestGPURayCastVolumeUpdate()
232 volumeMapper->SetSampleDistance(0.1); in TestGPURayCastVolumeUpdate()
233 volumeMapper->SetAutoAdjustSampleDistances(0); in TestGPURayCastVolumeUpdate()
234 volumeMapper->SetBlendModeToComposite(); in TestGPURayCastVolumeUpdate()
266 volume->SetMapper(volumeMapper); in TestGPURayCastVolumeUpdate()
286 int valid = volumeMapper->IsRenderSupported(renWin, volumeProperty); in TestGPURayCastVolumeUpdate()
297 volumeMapper->SetInputConnection(wavelet->GetOutputPort()); in TestGPURayCastVolumeUpdate()
H A DTestGPURayCastVolumeOrientation.cxx42 vtkNew<vtkGPUVolumeRayCastMapper> volumeMapper; in TestGPURayCastVolumeOrientation() local
47 volumeMapper->SetInputConnection(reader->GetOutputPort()); in TestGPURayCastVolumeOrientation()
56 volumeMapper->GetInput()->GetScalarRange(scalarRange); in TestGPURayCastVolumeOrientation()
57 volumeMapper->SetSampleDistance(0.1); in TestGPURayCastVolumeOrientation()
58 volumeMapper->SetAutoAdjustSampleDistances(0); in TestGPURayCastVolumeOrientation()
59 volumeMapper->SetBlendModeToComposite(); in TestGPURayCastVolumeOrientation()
91 volume->SetMapper(volumeMapper); in TestGPURayCastVolumeOrientation()
102 int valid = volumeMapper->IsRenderSupported(renWin, volumeProperty); in TestGPURayCastVolumeOrientation()
/dports/math/vtk8/VTK-8.2.0/Rendering/Volume/Testing/Cxx/
H A DTestGPURayCastCropping.cxx90 vtkGPUVolumeRayCastMapper *volumeMapper[2][4]; in TestGPURayCastCropping() local
99 volumeMapper[i][j]->SetSampleDistance(0.25); in TestGPURayCastCropping()
100 volumeMapper[i][j]->CroppingOn(); in TestGPURayCastCropping()
101 volumeMapper[i][j]->SetAutoAdjustSampleDistances(0); in TestGPURayCastCropping()
105 volume->SetMapper(volumeMapper[i][j]); in TestGPURayCastCropping()
106 volumeMapper[i][j]->Delete(); in TestGPURayCastCropping()
144 volumeMapper[0][1]->SetCroppingRegionFlagsToCross(); in TestGPURayCastCropping()
146 volumeMapper[0][3]->SetCroppingRegionFlags(24600); in TestGPURayCastCropping()
149 volumeMapper[1][0]->SetCroppingRegionFlagsToFence(); in TestGPURayCastCropping()
151 volumeMapper[1][2]->SetCroppingRegionFlags(1); in TestGPURayCastCropping()
[all …]
H A DTestGPURayCastCropping1.cxx39 vtkNew<vtkGPUVolumeRayCastMapper> volumeMapper; in TestGPURayCastCropping1() local
40 volumeMapper->AutoAdjustSampleDistancesOff(); in TestGPURayCastCropping1()
41 volumeMapper->SetSampleDistance(0.05); in TestGPURayCastCropping1()
47 volumeMapper->SetInputConnection(reader->GetOutputPort()); in TestGPURayCastCropping1()
48 volumeMapper->GetInput()->GetScalarRange(scalarRange); in TestGPURayCastCropping1()
49 volumeMapper->SetBlendModeToComposite(); in TestGPURayCastCropping1()
82 volumeMapper->SetCroppingRegionPlanes(10.0, 20.0, 10.0, 20.0, 10.0, 20.0); in TestGPURayCastCropping1()
83 volumeMapper->SetCroppingRegionFlagsToFence(); in TestGPURayCastCropping1()
84 volumeMapper->CroppingOn(); in TestGPURayCastCropping1()
88 volume->SetMapper(volumeMapper); in TestGPURayCastCropping1()
H A DTestGPURayCastVolumeDepthPass.cxx42 vtkNew<vtkGPUVolumeRayCastMapper> volumeMapper; in TestGPURayCastVolumeDepthPass() local
51 volumeMapper->UseDepthPassOn(); in TestGPURayCastVolumeDepthPass()
52 volumeMapper->GetDepthPassContourValues()->SetValue(0, 50.0); in TestGPURayCastVolumeDepthPass()
55 volumeMapper->SetInputConnection(reader->GetOutputPort()); in TestGPURayCastVolumeDepthPass()
56 volumeMapper->GetInput()->GetScalarRange(scalarRange); in TestGPURayCastVolumeDepthPass()
57 volumeMapper->SetSampleDistance(0.1); in TestGPURayCastVolumeDepthPass()
58 volumeMapper->SetAutoAdjustSampleDistances(0); in TestGPURayCastVolumeDepthPass()
59 volumeMapper->SetBlendModeToComposite(); in TestGPURayCastVolumeDepthPass()
91 volume->SetMapper(volumeMapper); in TestGPURayCastVolumeDepthPass()
97 int valid = volumeMapper->IsRenderSupported(renWin, in TestGPURayCastVolumeDepthPass()
H A DTestGPURayCastFourComponentsAverage.cxx53 vtkGPUVolumeRayCastMapper *volumeMapper; in TestGPURayCastFourComponentsAverage() local
57 volumeMapper=vtkGPUVolumeRayCastMapper::New(); in TestGPURayCastFourComponentsAverage()
58 volumeMapper->SetBlendModeToAverageIntensity(); in TestGPURayCastFourComponentsAverage()
59 volumeMapper->SetAverageIPScalarRange(20, 300); in TestGPURayCastFourComponentsAverage()
60 volumeMapper->SetInputConnection( in TestGPURayCastFourComponentsAverage()
75 volume->SetMapper(volumeMapper); in TestGPURayCastFourComponentsAverage()
79 int valid=volumeMapper->IsRenderSupported(renWin,volumeProperty); in TestGPURayCastFourComponentsAverage()
104 volumeMapper->Delete(); in TestGPURayCastFourComponentsAverage()
H A DTestGPURayCastAdditive.cxx94 vtkGPUVolumeRayCastMapper *volumeMapper; in TestGPURayCastAdditive() local
98 volumeMapper = vtkGPUVolumeRayCastMapper::New(); in TestGPURayCastAdditive()
99 volumeMapper->SetAutoAdjustSampleDistances(0); in TestGPURayCastAdditive()
100 volumeMapper->SetSampleDistance(0.2); in TestGPURayCastAdditive()
101 volumeMapper->SetBlendModeToComposite(); // composite first in TestGPURayCastAdditive()
102 volumeMapper->SetInputConnection( in TestGPURayCastAdditive()
130 volume->SetMapper(volumeMapper); in TestGPURayCastAdditive()
134 int valid = volumeMapper->IsRenderSupported(renWin,volumeProperty); in TestGPURayCastAdditive()
145 volumeMapper->SetBlendModeToAdditive(); in TestGPURayCastAdditive()
161 volumeMapper->Delete(); in TestGPURayCastAdditive()
H A DTestGPURayCastVolumeUpdate.cxx335 vtkNew<vtkGPUVolumeRayCastMapper> volumeMapper; in TestGPURayCastVolumeUpdate() local
343 volumeMapper->SetInputConnection(reader->GetOutputPort()); in TestGPURayCastVolumeUpdate()
351 volumeMapper->GetInput()->GetScalarRange(scalarRange); in TestGPURayCastVolumeUpdate()
352 volumeMapper->SetSampleDistance(0.1); in TestGPURayCastVolumeUpdate()
353 volumeMapper->SetAutoAdjustSampleDistances(0); in TestGPURayCastVolumeUpdate()
354 volumeMapper->SetBlendModeToComposite(); in TestGPURayCastVolumeUpdate()
386 volume->SetMapper(volumeMapper); in TestGPURayCastVolumeUpdate()
406 int valid = volumeMapper->IsRenderSupported(renWin, in TestGPURayCastVolumeUpdate()
420 volumeMapper->SetInputConnection(wavelet->GetOutputPort()); in TestGPURayCastVolumeUpdate()
H A DTestGPURayCastVolumeOrientation.cxx42 vtkNew<vtkGPUVolumeRayCastMapper> volumeMapper; in TestGPURayCastVolumeOrientation() local
48 volumeMapper->SetInputConnection(reader->GetOutputPort()); in TestGPURayCastVolumeOrientation()
57 volumeMapper->GetInput()->GetScalarRange(scalarRange); in TestGPURayCastVolumeOrientation()
58 volumeMapper->SetSampleDistance(0.1); in TestGPURayCastVolumeOrientation()
59 volumeMapper->SetAutoAdjustSampleDistances(0); in TestGPURayCastVolumeOrientation()
60 volumeMapper->SetBlendModeToComposite(); in TestGPURayCastVolumeOrientation()
92 volume->SetMapper(volumeMapper); in TestGPURayCastVolumeOrientation()
103 int valid = volumeMapper->IsRenderSupported(renWin, in TestGPURayCastVolumeOrientation()
/dports/math/vtk6/VTK-6.2.0/Rendering/Volume/Testing/Cxx/
H A DTestGPURayCastCropping.cxx90 vtkGPUVolumeRayCastMapper *volumeMapper[2][4]; in TestGPURayCastCropping() local
99 volumeMapper[i][j]->SetSampleDistance(0.25); in TestGPURayCastCropping()
100 volumeMapper[i][j]->CroppingOn(); in TestGPURayCastCropping()
101 volumeMapper[i][j]->SetAutoAdjustSampleDistances(0); in TestGPURayCastCropping()
105 volume->SetMapper(volumeMapper[i][j]); in TestGPURayCastCropping()
106 volumeMapper[i][j]->Delete(); in TestGPURayCastCropping()
144 volumeMapper[0][1]->SetCroppingRegionFlagsToCross(); in TestGPURayCastCropping()
146 volumeMapper[0][3]->SetCroppingRegionFlags(24600); in TestGPURayCastCropping()
149 volumeMapper[1][0]->SetCroppingRegionFlagsToFence(); in TestGPURayCastCropping()
151 volumeMapper[1][2]->SetCroppingRegionFlags(1); in TestGPURayCastCropping()
[all …]
H A DTestHAVSVolumeMapper.cxx127 vtkHAVSVolumeMapper *volumeMapper in TestHAVSVolumeMapper() local
130 volumeMapper->SetLevelOfDetail(false); in TestHAVSVolumeMapper()
131 volumeMapper->SetGPUDataStructures(false); in TestHAVSVolumeMapper()
132 volumeMapper->SetKBufferSizeTo2(); in TestHAVSVolumeMapper()
137 volume->SetMapper(volumeMapper); in TestHAVSVolumeMapper()
187 volumeMapper->SetKBufferSizeTo6(); in TestHAVSVolumeMapper()
191 volumeMapper->SetGPUDataStructures(true); in TestHAVSVolumeMapper()
195 volumeMapper->SetLevelOfDetail(true); in TestHAVSVolumeMapper()
204 volumeMapper->SetLevelOfDetail(false); in TestHAVSVolumeMapper()
205 volumeMapper->SetKBufferSizeTo2(); in TestHAVSVolumeMapper()
[all …]
H A DTestGPURayCastCropping1.cxx43 vtkNew<vtkGPUVolumeRayCastMapper> volumeMapper; in TestGPURayCastCropping1() local
44 volumeMapper->AutoAdjustSampleDistancesOff(); in TestGPURayCastCropping1()
45 volumeMapper->SetSampleDistance(0.05); in TestGPURayCastCropping1()
51 volumeMapper->SetInputConnection(reader->GetOutputPort()); in TestGPURayCastCropping1()
59 volumeMapper->GetInput()->GetScalarRange(scalarRange); in TestGPURayCastCropping1()
60 volumeMapper->SetBlendModeToComposite(); in TestGPURayCastCropping1()
92 volumeMapper->SetCroppingRegionPlanes(10.0, 20.0, 10.0, 20.0, 10.0, 20.0); in TestGPURayCastCropping1()
93 volumeMapper->SetCroppingRegionFlagsToFence(); in TestGPURayCastCropping1()
94 volumeMapper->CroppingOn(); in TestGPURayCastCropping1()
98 volume->SetMapper(volumeMapper.GetPointer()); in TestGPURayCastCropping1()
H A DTestSmartVolumeMapper.cxx91 vtkSmartVolumeMapper *volumeMapper; in TestSmartVolumeMapper() local
95 volumeMapper=vtkSmartVolumeMapper::New(); in TestSmartVolumeMapper()
96 volumeMapper->SetBlendModeToComposite(); // composite first in TestSmartVolumeMapper()
97 volumeMapper->SetInputConnection( in TestSmartVolumeMapper()
119 volume->SetMapper(volumeMapper); in TestSmartVolumeMapper()
128 volumeMapper->SetRequestedRenderMode(2); in TestSmartVolumeMapper()
133 volumeMapper->SetRequestedRenderModeToRayCastAndTexture(); in TestSmartVolumeMapper()
139 volumeMapper->SetRequestedRenderModeToRayCast(); in TestSmartVolumeMapper()
148 volumeMapper->Delete(); in TestSmartVolumeMapper()
H A DTestGPURayCastVolumeUpdate.cxx1193 vtkNew<vtkGPUVolumeRayCastMapper> volumeMapper; in TestGPURayCastVolumeUpdate() local
1201 volumeMapper->SetInputConnection(reader->GetOutputPort()); in TestGPURayCastVolumeUpdate()
1209 volumeMapper->GetInput()->GetScalarRange(scalarRange); in TestGPURayCastVolumeUpdate()
1210 volumeMapper->SetSampleDistance(0.1); in TestGPURayCastVolumeUpdate()
1211 volumeMapper->SetAutoAdjustSampleDistances(0); in TestGPURayCastVolumeUpdate()
1212 volumeMapper->SetBlendModeToComposite(); in TestGPURayCastVolumeUpdate()
1244 volume->SetMapper(volumeMapper.GetPointer()); in TestGPURayCastVolumeUpdate()
1264 int valid = volumeMapper->IsRenderSupported(renWin.GetPointer(), in TestGPURayCastVolumeUpdate()
1278 volumeMapper->SetInputConnection(wavelet->GetOutputPort()); in TestGPURayCastVolumeUpdate()
/dports/math/vtk9/VTK-9.1.0/Rendering/RayTracing/Testing/Cxx/
H A DTestGPUVolumeRayCastMapper.cxx1262 vtkNew<vtkGPUVolumeRayCastMapper> volumeMapper; in TestGPUVolumeRayCastMapper() local
1263 volumeMapper->SetAutoAdjustSampleDistances(0); in TestGPUVolumeRayCastMapper()
1264 volumeMapper->SetSampleDistance(0.5); in TestGPUVolumeRayCastMapper()
1265 volumeMapper->SetInputConnection(wavelet->GetOutputPort()); in TestGPUVolumeRayCastMapper()
1266 volumeMapper->AddObserver(vtkCommand::ErrorEvent, errorObserver); in TestGPUVolumeRayCastMapper()
1284 volume->SetMapper(volumeMapper); in TestGPUVolumeRayCastMapper()
1310 volumeMapper->DebugOn(); in TestGPUVolumeRayCastMapper()
1312 int valid = volumeMapper->IsRenderSupported(renderWindow, volumeProperty); in TestGPUVolumeRayCastMapper()
H A DTestGPURayCastVolumeUpdate.cxx225 vtkNew<vtkGPUVolumeRayCastMapper> volumeMapper; in TestGPURayCastVolumeUpdate() local
232 volumeMapper->SetInputConnection(reader->GetOutputPort()); in TestGPURayCastVolumeUpdate()
240 volumeMapper->GetInput()->GetScalarRange(scalarRange); in TestGPURayCastVolumeUpdate()
241 volumeMapper->SetSampleDistance(0.1); in TestGPURayCastVolumeUpdate()
242 volumeMapper->SetAutoAdjustSampleDistances(0); in TestGPURayCastVolumeUpdate()
243 volumeMapper->SetBlendModeToComposite(); in TestGPURayCastVolumeUpdate()
281 volume->SetMapper(volumeMapper); in TestGPURayCastVolumeUpdate()
301 int valid = volumeMapper->IsRenderSupported(renWin, volumeProperty); in TestGPURayCastVolumeUpdate()
312 volumeMapper->SetInputConnection(wavelet->GetOutputPort()); in TestGPURayCastVolumeUpdate()
/dports/math/vtk8/VTK-8.2.0/Rendering/OSPRay/Testing/Cxx/
H A DTestGPUVolumeRayCastMapper.cxx1268 vtkNew<vtkGPUVolumeRayCastMapper> volumeMapper; in TestGPUVolumeRayCastMapper() local
1269 volumeMapper->SetAutoAdjustSampleDistances(0); in TestGPUVolumeRayCastMapper()
1270 volumeMapper->SetSampleDistance(0.5); in TestGPUVolumeRayCastMapper()
1271 volumeMapper->SetInputConnection(wavelet->GetOutputPort()); in TestGPUVolumeRayCastMapper()
1272 volumeMapper->AddObserver(vtkCommand::ErrorEvent, errorObserver); in TestGPUVolumeRayCastMapper()
1290 volume->SetMapper(volumeMapper); in TestGPUVolumeRayCastMapper()
1316 volumeMapper->DebugOn(); in TestGPUVolumeRayCastMapper()
1318 int valid = volumeMapper->IsRenderSupported(renderWindow, in TestGPUVolumeRayCastMapper()
H A DTestGPURayCastVolumeUpdate.cxx397 vtkNew<vtkGPUVolumeRayCastMapper> volumeMapper; in TestGPURayCastVolumeUpdate() local
405 volumeMapper->SetInputConnection(reader->GetOutputPort()); in TestGPURayCastVolumeUpdate()
413 volumeMapper->GetInput()->GetScalarRange(scalarRange); in TestGPURayCastVolumeUpdate()
414 volumeMapper->SetSampleDistance(0.1); in TestGPURayCastVolumeUpdate()
415 volumeMapper->SetAutoAdjustSampleDistances(0); in TestGPURayCastVolumeUpdate()
416 volumeMapper->SetBlendModeToComposite(); in TestGPURayCastVolumeUpdate()
455 volume->SetMapper(volumeMapper); in TestGPURayCastVolumeUpdate()
475 int valid = volumeMapper->IsRenderSupported(renWin, in TestGPURayCastVolumeUpdate()
489 volumeMapper->SetInputConnection(wavelet->GetOutputPort()); in TestGPURayCastVolumeUpdate()

1234567891011