Package com.jme3.renderer.pipeline
Class NullPipeline
java.lang.Object
com.jme3.renderer.pipeline.NullPipeline
- All Implemented Interfaces:
- RenderPipeline
Render pipeline that performs no rendering.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidCalled after all rendering is complete in a rendering frame this pipeline participated in.Fetches the PipelineContext this pipeline requires for rendering from the RenderManager.booleanReturns true if this pipeline has rendered a viewport this render frame.voidpipelineRender(RenderManager rm, PipelineContext context, ViewPort vp, float tpf) Renders the pipeline.voidCalled before this pipeline is rendered for the first time this frame.
- 
Constructor Details- 
NullPipelinepublic NullPipeline()
 
- 
- 
Method Details- 
fetchPipelineContextDescription copied from interface:RenderPipelineFetches the PipelineContext this pipeline requires for rendering from the RenderManager.- Specified by:
- fetchPipelineContextin interface- RenderPipeline
- Parameters:
- rm-
- Returns:
- pipeline context (not null)
 
- 
hasRenderedThisFramepublic boolean hasRenderedThisFrame()Description copied from interface:RenderPipelineReturns true if this pipeline has rendered a viewport this render frame.- Specified by:
- hasRenderedThisFramein interface- RenderPipeline
- Returns:
 
- 
startRenderFrameDescription copied from interface:RenderPipelineCalled before this pipeline is rendered for the first time this frame.Only called if the pipeline will actually be rendered. - Specified by:
- startRenderFramein interface- RenderPipeline
- Parameters:
- rm-
 
- 
pipelineRenderDescription copied from interface:RenderPipelineRenders the pipeline.- Specified by:
- pipelineRenderin interface- RenderPipeline
- Parameters:
- rm-
- context-
- vp-
- tpf-
 
- 
endRenderFrameDescription copied from interface:RenderPipelineCalled after all rendering is complete in a rendering frame this pipeline participated in.- Specified by:
- endRenderFramein interface- RenderPipeline
- Parameters:
- rm-
 
 
-