Table of Contents

Enum ColorWriteMask

Namespace
NeoVeldrid
Assembly
NeoVeldrid.dll

A color bitmask representing the components which can be written to.

[Flags]
public enum ColorWriteMask

Fields

All = Red | Green | Blue | Alpha

All color components will be written to.

Alpha = 8

The alpha component will be written to.

Blue = 4

The blue component will be written to.

Green = 2

The green component will be written to.

None = 0

No color component will be written to.

Red = 1

The red component will be written to.