C# 클래스 Fusion.Drivers.Graphics.IndexBuffer

상속: System.DisposableBase
파일 보기 프로젝트 열기: demiurghg/FusionEngine 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
Create ( GraphicsDevice device, int indices ) : IndexBuffer

Creates buffer from given indices

IndexBuffer ( GraphicsDevice device, int capacity ) : System

Creates an instance of this object.

SetData ( int data ) : void

Copies array data to the index buffer.

SetData ( int data, int offset, int count ) : void

Copies array data to the index buffer.

보호된 메소드들

메소드 설명
Dispose ( bool disposing ) : void

Immediately releases the unmanaged resources used by this object.

메소드 상세

Create() 공개 정적인 메소드

Creates buffer from given indices
public static Create ( GraphicsDevice device, int indices ) : IndexBuffer
device GraphicsDevice
indices int
리턴 IndexBuffer

Dispose() 보호된 메소드

Immediately releases the unmanaged resources used by this object.
protected Dispose ( bool disposing ) : void
disposing bool
리턴 void

IndexBuffer() 공개 메소드

Creates an instance of this object.
public IndexBuffer ( GraphicsDevice device, int capacity ) : System
device GraphicsDevice
capacity int
리턴 System

SetData() 공개 메소드

Copies array data to the index buffer.
public SetData ( int data ) : void
data int
리턴 void

SetData() 공개 메소드

Copies array data to the index buffer.
public SetData ( int data, int offset, int count ) : void
data int
offset int
count int
리턴 void