C# Class Axiom.Graphics.RenderOperation

Contains all the information required to render a set of vertices. This includes a list of VertexBuffers.
This class contains
Inheritance: DisposableObject
Afficher le fichier Open project: WolfgangSt/axiom Class Usage Examples

Méthodes publiques

Свойство Type Description
indexData IndexData
numberOfInstances int
operationType OperationType
useGlobalInstancingVertexBufferIsAvailable bool
useIndices bool
vertexData VertexData

Méthodes publiques

Méthode Description
RenderOperation ( ) : System

Default constructor.

Méthodes protégées

Méthode Description
dispose ( bool disposeManagedResources ) : void

Method Details

RenderOperation() public méthode

Default constructor.
public RenderOperation ( ) : System
Résultat System

dispose() protected méthode

protected dispose ( bool disposeManagedResources ) : void
disposeManagedResources bool
Résultat void

Property Details

indexData public_oe property

When useIndices is set to true, this must hold a reference to an index buffer containing indices into the vertices stored here.
public IndexData,Axiom.Graphics indexData
Résultat IndexData

numberOfInstances public_oe property

The number of instances for the render operation - this option is supported in only a part of the render systems.
public int numberOfInstances
Résultat int

operationType public_oe property

Type of operation to perform.
public OperationType operationType
Résultat OperationType

useGlobalInstancingVertexBufferIsAvailable public_oe property

public bool useGlobalInstancingVertexBufferIsAvailable
Résultat bool

useIndices public_oe property

Specifies whether or not a list of indices should be used when rendering the vertices in the buffers.
public bool useIndices
Résultat bool

vertexData public_oe property

Contains a list of hardware vertex buffers for this complete render operation.
public VertexData,Axiom.Graphics vertexData
Résultat VertexData