Show / Hide Table of Contents

Enum VertexElementFormat

The format of an individual vertex element.

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

Fields

Name Description
Byte2

Two 8-bit unisgned integers.

Byte2_Norm

Two 8-bit unsigned normalized integers.

Byte4

Four 8-bit unsigned integers.

Byte4_Norm

Four 8-bit unsigned normalized integers.

Float1

One 32-bit floating point value.

Float2

Two 32-bit floating point values.

Float3

Three 32-bit floating point values.

Float4

Four 32-bit floating point values.

Half1

One 16-bit floating point value.

Half2

Two 16-bit floating point values.

Half4

Four 16-bit floating point values.

Int1

One 32-bit signed integer.

Int2

Two 32-bit signed integers.

Int3

Three 32-bit signed integers.

Int4

Four 32-bit signed integers.

SByte2

Two 8-bit signed integers.

SByte2_Norm

Two 8-bit signed normalized integers.

SByte4

Four 8-bit signed integers.

SByte4_Norm

Four 8-bit signed normalized integers.

Short2

Two 16-bit signed integers.

Short2_Norm

Two 16-bit signed normalized integers.

Short4

Four 16-bit signed integers.

Short4_Norm

Four 16-bit signed normalized integers.

UInt1

One 32-bit unsigned integer.

UInt2

Two 32-bit unsigned integers.

UInt3

Three 32-bit unsigned integers.

UInt4

Four 32-bit unsigned integers.

UShort2

Two 16-bit unsigned integers.

UShort2_Norm

Two 16-bit unsigned normalized integers.

UShort4

Four 16-bit unsigned integers.

UShort4_Norm

Four 16-bit unsigned normalized integers.

Back to top