Show / Hide Table of Contents

Enum PrimitiveTopology

Determines how a sequence of vertices is interepreted by the rasterizer.

Namespace: Veldrid
Assembly: cs.temp.dll.dll
Syntax
public enum PrimitiveTopology : byte

Fields

Name Description
LineList

A series of isolated, 2-element line segments.

LineStrip

A series of connected line segments.

PointList

A series of isolated points.

TriangleList

A list of isolated, 3-element triangles.

TriangleStrip

A series of connected triangles.

Back to top