C# Class Axiom.Graphics.RSClearOperation

Clear framebuffer RenderSystem operation
Inheritance: CompositeRenderSystemOperation
Show file Open project: WolfgangSt/axiom

Protected Properties

Property Type Description
buffers FrameBufferType
color Axiom.Core.ColorEx
depth float
stencil int

Public Methods

Method Description
Execute ( SceneManager sm, Axiom.Graphics.RenderSystem rs ) : void
RSClearOperation ( FrameBufferType buffers, ColorEx color, float depth, int stencil ) : System

Method Details

Execute() public method

public Execute ( SceneManager sm, Axiom.Graphics.RenderSystem rs ) : void
sm Axiom.Core.SceneManager
rs Axiom.Graphics.RenderSystem
return void

RSClearOperation() public method

public RSClearOperation ( FrameBufferType buffers, ColorEx color, float depth, int stencil ) : System
buffers FrameBufferType
color Axiom.Core.ColorEx
depth float
stencil int
return System

Property Details

buffers protected property

Which buffers to clear (FrameBuffer)
protected FrameBufferType buffers
return FrameBufferType

color protected property

Color to clear in case FrameBuffer.Color is set
protected ColorEx,Axiom.Core color
return Axiom.Core.ColorEx

depth protected property

Depth to set in case FrameBuffer.Depth is set
protected float depth
return float

stencil protected property

Stencil value to set in case FrameBuffer.Stencil is set
protected int stencil
return int