C# Class Reign.Video.IVertexBuffer

Inheritance: DisposableResource
ファイルを表示 Open project: reignstudios/ReignSDK Class Usage Examples

Protected Properties

Property Type Description
usage BufferUsages
vertexByteSize int

Public Methods

Method Description
Draw ( ) : void
Draw ( int drawCount ) : void
DrawInstanced ( int drawCount ) : void
DrawInstancedClassic ( int drawCount, int meshVertexCount, int meshIndexCount ) : void
Enable ( ) : void
Enable ( IIndexBuffer indexBuffer ) : void
Enable ( IIndexBuffer indexBuffer, IVertexBuffer instanceBuffer ) : void
Enable ( IVertexBuffer instanceBuffer ) : void
Update ( float vertices, int updateCount ) : void

Protected Methods

Method Description
IVertexBuffer ( IDisposableResource parent, IBufferLayoutDesc bufferLayoutDesc, BufferUsages usage, float vertices ) : System

Method Details

Draw() public abstract method

public abstract Draw ( ) : void
return void

Draw() public abstract method

public abstract Draw ( int drawCount ) : void
drawCount int
return void

DrawInstanced() public abstract method

public abstract DrawInstanced ( int drawCount ) : void
drawCount int
return void

DrawInstancedClassic() public abstract method

public abstract DrawInstancedClassic ( int drawCount, int meshVertexCount, int meshIndexCount ) : void
drawCount int
meshVertexCount int
meshIndexCount int
return void

Enable() public abstract method

public abstract Enable ( ) : void
return void

Enable() public abstract method

public abstract Enable ( IIndexBuffer indexBuffer ) : void
indexBuffer IIndexBuffer
return void

Enable() public abstract method

public abstract Enable ( IIndexBuffer indexBuffer, IVertexBuffer instanceBuffer ) : void
indexBuffer IIndexBuffer
instanceBuffer IVertexBuffer
return void

Enable() public abstract method

public abstract Enable ( IVertexBuffer instanceBuffer ) : void
instanceBuffer IVertexBuffer
return void

IVertexBuffer() protected method

protected IVertexBuffer ( IDisposableResource parent, IBufferLayoutDesc bufferLayoutDesc, BufferUsages usage, float vertices ) : System
parent IDisposableResource
bufferLayoutDesc IBufferLayoutDesc
usage BufferUsages
vertices float
return System

Update() public abstract method

public abstract Update ( float vertices, int updateCount ) : void
vertices float
updateCount int
return void

Property Details

usage protected_oe property

protected BufferUsages usage
return BufferUsages

vertexByteSize protected_oe property

protected int vertexByteSize
return int