Home
last modified time | relevance | path

Searched refs:numClipPlanes (Results 1 – 25 of 28) sorted by relevance

12

/dports/math/vtk6/VTK-6.2.0/Rendering/OpenGL/
H A DvtkOpenGLClipPlanesPainter.cxx49 int i, numClipPlanes; in RenderInternal() local
56 numClipPlanes = 0; in RenderInternal()
60 numClipPlanes = clipPlanes->GetNumberOfItems(); in RenderInternal()
61 if (numClipPlanes > 6) in RenderInternal()
64 numClipPlanes = 6; in RenderInternal()
68 for (i = 0; i < numClipPlanes; i++) in RenderInternal()
78 for (i = 0; i < numClipPlanes; i++) in RenderInternal()
103 for (i = 0; i < numClipPlanes; i++) in RenderInternal()
H A DvtkOpenGLPolyDataMapper2D.cxx55 int i,numClipPlanes; in RenderOverlay() local
250 numClipPlanes = 0; in RenderOverlay()
254 numClipPlanes = clipPlanes->GetNumberOfItems(); in RenderOverlay()
255 if (numClipPlanes > 4) in RenderOverlay()
261 for (i = 0; i < numClipPlanes; i++) in RenderOverlay()
266 for (i = 0; i < numClipPlanes; i++) in RenderOverlay()
427 for (i = 0; i < numClipPlanes; i++) in RenderOverlay()
H A DvtkOpenGLImageSliceMapper.cxx1052 int numClipPlanes = this->GetNumberOfClippingPlanes(); in Render() local
1053 if (numClipPlanes > 6) in Render()
1061 if (i < numClipPlanes) in Render()
H A DvtkOpenGLPolyDataMapper.cxx151 int numClipPlanes = this->GetNumberOfClippingPlanes(); in RenderPiece() local
152 if (numClipPlanes > 6) in RenderPiece()
155 numClipPlanes = 6; in RenderPiece()
158 for (int i = 0; i < numClipPlanes; i++) in RenderPiece()
279 for (int c = 0; c < numClipPlanes; c++) in RenderPiece()
/dports/math/vtk6/VTK-6.2.0/Rendering/VolumeOpenGL/
H A DvtkOpenGLVolumeTextureMapper2D.cxx41 int i, numClipPlanes = 0; in Render() local
59 numClipPlanes = this->GetNumberOfClippingPlanes(); in Render()
60 if (numClipPlanes > 6) in Render()
63 numClipPlanes = 6; in Render()
66 for (i = 0; i < numClipPlanes; i++) in Render()
109 for (i = 0; i < numClipPlanes; i++) in Render()
H A DvtkOpenGLVolumeTextureMapper3D.cxx107 int numClipPlanes = 0; in Render() local
130 numClipPlanes = this->GetNumberOfClippingPlanes(); in Render()
131 if (numClipPlanes > 6) in Render()
134 numClipPlanes = 6; in Render()
137 for (i = 0; i < numClipPlanes; i++) in Render()
/dports/math/vtk9/VTK-9.1.0/Rendering/ContextOpenGL2/
H A DvtkOpenGLContextDevice3D.cxx135 int numClipPlanes = 0; in SetMatrices() local
141 planeEquations[numClipPlanes][0] = this->ClippingPlaneValues[i * 4]; in SetMatrices()
142 planeEquations[numClipPlanes][1] = this->ClippingPlaneValues[i * 4 + 1]; in SetMatrices()
143 planeEquations[numClipPlanes][2] = this->ClippingPlaneValues[i * 4 + 2]; in SetMatrices()
144 planeEquations[numClipPlanes][3] = this->ClippingPlaneValues[i * 4 + 3]; in SetMatrices()
145 numClipPlanes++; in SetMatrices()
148 prog->SetUniformi("numClipPlanes", numClipPlanes); in SetMatrices()
/dports/math/vtk8/VTK-8.2.0/Rendering/ContextOpenGL2/
H A DvtkOpenGLContextDevice3D.cxx137 int numClipPlanes = 0; in SetMatrices() local
143 planeEquations[numClipPlanes][0] = this->ClippingPlaneValues[i*4]; in SetMatrices()
144 planeEquations[numClipPlanes][1] = this->ClippingPlaneValues[i*4+1]; in SetMatrices()
145 planeEquations[numClipPlanes][2] = this->ClippingPlaneValues[i*4+2]; in SetMatrices()
146 planeEquations[numClipPlanes][3] = this->ClippingPlaneValues[i*4+3]; in SetMatrices()
147 numClipPlanes++; in SetMatrices()
150 prog->SetUniformi("numClipPlanes", numClipPlanes); in SetMatrices()
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/src/osgPlugins/ive/
H A DClipNode.cpp69 unsigned int numClipPlanes = in->readUInt(); in read() local
71 for (unsigned int i=0;i<numClipPlanes;++i) in read()
/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/src/osgPlugins/ive/
H A DClipNode.cpp69 unsigned int numClipPlanes = in->readUInt(); in read() local
71 for (unsigned int i=0;i<numClipPlanes;++i) in read()
/dports/math/vtk6/VTK-6.2.0/Rendering/OpenGL2/
H A DvtkOpenGLGlyph3DHelper.cxx263 int numClipPlanes = this->GetNumberOfClippingPlanes(); in ReplaceShaderValues() local
264 if (numClipPlanes > 6) in ReplaceShaderValues()
267 numClipPlanes = 6; in ReplaceShaderValues()
H A DvtkOpenGLPolyDataMapper.cxx537 int numClipPlanes = this->GetNumberOfClippingPlanes(); in ReplaceShaderValues() local
538 if (numClipPlanes > 6) in ReplaceShaderValues()
541 numClipPlanes = 6; in ReplaceShaderValues()
846 int numClipPlanes = this->GetNumberOfClippingPlanes(); in SetMapperShaderParameters() local
847 if (numClipPlanes > 6) in SetMapperShaderParameters()
850 numClipPlanes = 6; in SetMapperShaderParameters()
854 for (int i = 0; i < numClipPlanes; i++) in SetMapperShaderParameters()
863 cellBO.Program->SetUniformi("numClipPlanes", numClipPlanes); in SetMapperShaderParameters()
/dports/math/vtk9/VTK-9.1.0/Rendering/OpenGL2/
H A DvtkOpenGLGlyph3DHelper.cxx224 int numClipPlanes = this->GetNumberOfClippingPlanes(); in ReplaceShaderClip() local
225 if (numClipPlanes > 6) in ReplaceShaderClip()
H A DvtkOpenGLPolyDataMapper.cxx1955 int numClipPlanes = this->GetNumberOfClippingPlanes(); in ReplaceShaderClip() local
1956 if (numClipPlanes > 6) in ReplaceShaderClip()
2838 int numClipPlanes = this->GetNumberOfClippingPlanes(); in SetMapperShaderParameters() local
2839 if (numClipPlanes > 6) in SetMapperShaderParameters()
2842 numClipPlanes = 6; in SetMapperShaderParameters()
2860 for (int i = 0; i < numClipPlanes; i++) in SetMapperShaderParameters()
2872 cellBO.Program->SetUniformi("numClipPlanes", numClipPlanes); in SetMapperShaderParameters()
/dports/math/vtk8/VTK-8.2.0/Rendering/OpenGL2/
H A DvtkOpenGLGlyph3DHelper.cxx232 int numClipPlanes = this->GetNumberOfClippingPlanes(); in ReplaceShaderClip() local
233 if (numClipPlanes > 6) in ReplaceShaderClip()
H A DvtkOpenGLPolyDataMapper.cxx1226 int numClipPlanes = this->GetNumberOfClippingPlanes(); in ReplaceShaderClip() local
1227 if (numClipPlanes > 6) in ReplaceShaderClip()
1988 int numClipPlanes = this->GetNumberOfClippingPlanes(); in SetMapperShaderParameters() local
1989 if (numClipPlanes > 6) in SetMapperShaderParameters()
1992 numClipPlanes = 6; in SetMapperShaderParameters()
2010 for (int i = 0; i < numClipPlanes; i++) in SetMapperShaderParameters()
2024 cellBO.Program->SetUniformi("numClipPlanes", numClipPlanes); in SetMapperShaderParameters()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/external/vulkancts/modules/vulkan/clipping/
H A DvktClippingTests.cpp1611 for (int numClipPlanes = 1; numClipPlanes <= MAX_CLIP_DISTANCES; ++numClipPlanes) in addClippingTests() local
1615 …td::min(static_cast<int>(MAX_CULL_DISTANCES), MAX_COMBINED_CLIP_AND_CULL_DISTANCES - numClipPlanes) in addClippingTests()
1617 …const std::string caseName = de::toString(numClipPlanes) + (numCullPlanes > 0 ? "_" + de::toStr… in addClippingTests()
1622 …CaseDefinition(topology, numClipPlanes, numCullPlanes, useTessellation, useGeometry, dynamicIndexi… in addClippingTests()
/dports/games/dhewm3/dhewm3-1.5.1/neo/renderer/
H A Ddraw_common.cpp365 if ( backEnd.viewDef->numClipPlanes && surf->space != backEnd.currentSpace ) { in RB_T_FillDepthBuffer()
531 if ( backEnd.viewDef->numClipPlanes ) { in RB_STD_FillDepthBuffer()
556 if ( backEnd.viewDef->numClipPlanes ) { in RB_STD_FillDepthBuffer()
H A Dtr_subview.cpp253 parms->numClipPlanes = 1; in R_MirrorViewBySurface()
/dports/math/vtk6/VTK-6.2.0/Rendering/Core/
H A DvtkCellPicker.cxx1075 int numClipPlanes = mapper->GetNumberOfClippingPlanes(); in ClipLineWithPlanes() local
1076 for (int i = 0; i < numClipPlanes; i++) in ClipLineWithPlanes()
/dports/math/vtk8/VTK-8.2.0/Rendering/Core/
H A DvtkCellPicker.cxx1244 int numClipPlanes = mapper->GetNumberOfClippingPlanes(); in ClipLineWithPlanes() local
1245 for (int i = 0; i < numClipPlanes; i++) in ClipLineWithPlanes()
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/RenderSystems/GLES/src/
H A DOgreGLESRenderSystem.cpp2565 int numClipPlanes; in setClipPlanesImpl() local
2579 numClipPlanes = clipPlanes.size(); in setClipPlanesImpl()
2584 for (i = 0; i < numClipPlanes; ++i) in setClipPlanesImpl()
/dports/math/vtk9/VTK-9.1.0/Rendering/Core/
H A DvtkCellPicker.cxx1425 int numClipPlanes = mapper->GetNumberOfClippingPlanes(); in ClipLineWithPlanes() local
1426 for (int i = 0; i < numClipPlanes; i++) in ClipLineWithPlanes()
/dports/graphics/ogre3d/ogre-1.11.6/RenderSystems/GL/src/
H A DOgreGLRenderSystem.cpp2903 size_t numClipPlanes; in setClipPlanesImpl() local
2914 numClipPlanes = clipPlanes.size(); in setClipPlanesImpl()
2915 for (i = 0; i < numClipPlanes; ++i) in setClipPlanesImpl()
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/RenderSystems/GL/src/
H A DOgreGLRenderSystem.cpp3218 size_t numClipPlanes; in setClipPlanesImpl() local
3229 numClipPlanes = clipPlanes.size(); in setClipPlanesImpl()
3230 for (i = 0; i < numClipPlanes; ++i) in setClipPlanesImpl()

12