Enum LogicOperation
Defines the type of logical operations to perform while blending a render target.
Namespace: Gorgon.Graphics.Core
Assembly: Gorgon.Graphics.Core.dll
Syntax
public enum LogicOperation
Fields
Name | Description |
---|---|
And | Performs a logical AND operation on the render target. |
AndInverted | Performs a logical AND and invert operation on the render target. |
AndReverse | Performs a logical AND and reverse operation on the render target. |
Clear | Clears the render target. |
Copy | Copys the render target. |
CopyInverted | Performs an inverted-copy of the render target. |
Equiv | Performs a logical equal operation on the render target. |
Invert | Inverts the render target. |
Nand | Performs a logical NAND operation on the render target. |
Noop | No operation is performed on the render target. |
Nor | Performs a logical NOR operation on the render target. |
Or | Performs a logical OR operation on the render target. |
OrInverted | Performs a logical OR and invert operation on the render target. |
OrReverse | Performs a logical OR and reverse operation on the render target. |
Set | Sets the render target. |
Xor | Performs a logical XOR operation on the render target. |