MCPcopy Create free account
hub / github.com/Kitware/VTK / PostRender

Method PostRender

Rendering/OpenGL2/vtkOpenGLRenderPass.cxx:83–92  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

81
82//------------------------------------------------------------------------------
83void vtkOpenGLRenderPass::PostRender(const vtkRenderState* s)
84{
85 assert("Render state valid." && s);
86 size_t numProps = s->GetPropArrayCount();
87 for (size_t i = 0; i < numProps; ++i)
88 {
89 vtkProp* prop = s->GetPropArray()[i];
90 this->PostRenderProp(prop);
91 }
92}
93
94//------------------------------------------------------------------------------
95void vtkOpenGLRenderPass::PostRenderProp(vtkProp* prop)

Callers

nothing calls this directly

Calls 4

PostRenderPropMethod · 0.95
GetPropArrayCountMethod · 0.80
GetPropArrayMethod · 0.80
assertFunction · 0.50

Tested by

no test coverage detected