Enum RenderingDevice.DrawFlags
- Namespace
- Godot
- Assembly
- GodotSharp.dll
[Flags]
public enum RenderingDevice.DrawFlags : long
Fields
ClearAll = ClearColorAll | ClearDepth | ClearStencilClear all attachments.
ClearColor0 = 1Clear the first color attachment.
ClearColor1 = 2Clear the second color attachment.
ClearColor2 = 4Clear the third color attachment.
ClearColor3 = 8Clear the fourth color attachment.
ClearColor4 = 16Clear the fifth color attachment.
ClearColor5 = 32Clear the sixth color attachment.
ClearColor6 = 64Clear the seventh color attachment.
ClearColor7 = 128Clear the eighth color attachment.
ClearColorAll = ClearColor0 | ClearColor1 | ClearColor2 | ClearColor3 | ClearColor4 | ClearColor5 | ClearColor6 | ClearColor7Clear all color attachments.
ClearColorMask = ClearColor0 | ClearColor1 | ClearColor2 | ClearColor3 | ClearColor4 | ClearColor5 | ClearColor6 | ClearColor7Mask for clearing all color attachments.
ClearDepth = 65536Clear the depth attachment.
ClearStencil = 262144Clear the stencil attachment.
DefaultAll = 0Do not clear or ignore any attachments.
IgnoreAll = IgnoreColorAll | IgnoreDepth | IgnoreStencilIgnore the previous contents of all attachments.
IgnoreColor0 = 256Ignore the previous contents of the first color attachment.
IgnoreColor1 = 512Ignore the previous contents of the second color attachment.
IgnoreColor2 = 1024Ignore the previous contents of the third color attachment.
IgnoreColor3 = 2048Ignore the previous contents of the fourth color attachment.
IgnoreColor4 = 4096Ignore the previous contents of the fifth color attachment.
IgnoreColor5 = 8192Ignore the previous contents of the sixth color attachment.
IgnoreColor6 = 16384Ignore the previous contents of the seventh color attachment.
IgnoreColor7 = 32768Ignore the previous contents of the eighth color attachment.
IgnoreColorAll = IgnoreColor0 | IgnoreColor1 | IgnoreColor2 | IgnoreColor3 | IgnoreColor4 | IgnoreColor5 | IgnoreColor6 | IgnoreColor7Ignore the previous contents of all color attachments.
IgnoreColorMask = IgnoreColor0 | IgnoreColor1 | IgnoreColor2 | IgnoreColor3 | IgnoreColor4 | IgnoreColor5 | IgnoreColor6 | IgnoreColor7Mask for ignoring all the previous contents of the color attachments.
IgnoreDepth = 131072Ignore the previous contents of the depth attachment.
IgnoreStencil = 524288Ignore the previous contents of the stencil attachment.