Show / Hide Table of Contents

Enum SamplerAddressMode

An addressing mode for texture coordinates.

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

Fields

Name Description
Border

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

Clamp

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

Mirror

Texture coordinates are mirrored upon overflow.

Wrap

Texture coordinates are wrapped upon overflow.

Back to top