Table of Contents

Struct VertexRange

Namespace
SharpDX.Direct2D1
Assembly
SharpDX.Direct2D1.dll

Defines a range of vertices that are used when rendering less than the full contents of a vertex buffer.

public struct VertexRange
Inherited Members

Constructors

VertexRange(int, int)

Initializes an instance of VertexRange struct.

public VertexRange(int startVertex, int vertexCount)

Parameters

startVertex int

The first vertex in the range to process.

vertexCount int

The number of vertices in the count to use.

Fields

StartVertex

The first vertex in the range to process.

public int StartVertex

Field Value

int

VertexCount

The number of vertices to use.

public int VertexCount

Field Value

int