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 | AlphaAll color components will be written to.
Alpha = 8The alpha component will be written to.
Blue = 4The blue component will be written to.
Green = 2The green component will be written to.
None = 0No color component will be written to.
Red = 1The red component will be written to.