Table of Contents

Enum PrimitiveTopology

Namespace
Xui.GPU.Software
Assembly
Xui.Runtime.Software.dll

Defines the primitive topology for vertex assembly.

public enum PrimitiveTopology

Fields

LineList = 2

Individual line segments. Each group of 2 vertices forms a line.

LineStrip = 3

Connected line segments where each vertex (after the first) forms a line with the preceding vertex.

PointList = 4

Individual points. Each vertex is rendered as a point.

TriangleList = 0

Vertices are assembled into triangles. Each group of 3 vertices forms a triangle.

TriangleStrip = 1

Vertices form a strip of triangles where each vertex (after the first two) forms a triangle with the two preceding vertices.