Table of Contents

Enum SamplerAddressMode

Namespace
NeoVeldrid
Assembly
NeoVeldrid.dll

An addressing mode for texture coordinates.

public enum SamplerAddressMode : byte

Fields

Border = 3

Texture coordinates that overflow return the predefined border color defined in BorderColor.

Clamp = 2

Texture coordinates are clamped to the maximum or minimum values upon overflow.

Mirror = 1

Texture coordinates are mirrored upon overflow.

Wrap = 0

Texture coordinates are wrapped upon overflow.