Table of Contents

Enum ColorWriteMask

Namespace
Pie
Assembly
Pie.dll

The color write mask tells the graphics device which color channels to draw to the current framebuffer.

[Flags]
public enum ColorWriteMask

Fields

All = Red | Green | Blue | Alpha

Draw to all channels (the default behavior).

Alpha = 8

Draw to the alpha channel.

Blue = 4

Draw to the blue channel.

Green = 2

Draw to the green channel.

None = 0

Draw to no channels.

Red = 1

Draw to the red channel.