C# Class Sharpex2D.Rendering.OpenGL.IndexBuffer

Inheritance: IDisposable
Afficher le fichier Open project: ThuCommix/Sharpex2D Class Usage Examples

Méthodes publiques

Méthode Description
Bind ( ) : void

Binds the IndexBuffer.

Dispose ( ) : void

Disposes the object.

IndexBuffer ( ) : System

Initializes a new IndexBuffer class.

SetData ( ushort indices ) : void

Sets the Data.

Bind must be called in order to take effect.

Unbind ( ) : void

Unbinds the IndexBuffer.

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void

Disposes the object.

Method Details

Bind() public méthode

Binds the IndexBuffer.
public Bind ( ) : void
Résultat void

Dispose() public méthode

Disposes the object.
public Dispose ( ) : void
Résultat void

Dispose() protected méthode

Disposes the object.
protected Dispose ( bool disposing ) : void
disposing bool The disposing state.
Résultat void

IndexBuffer() public méthode

Initializes a new IndexBuffer class.
public IndexBuffer ( ) : System
Résultat System

SetData() public méthode

Sets the Data.
Bind must be called in order to take effect.
public SetData ( ushort indices ) : void
indices ushort The Indices.
Résultat void

Unbind() public méthode

Unbinds the IndexBuffer.
public Unbind ( ) : void
Résultat void