Enum HlslBinaryOperator
- Namespace
- PaintDotNet.Direct2D1.Effects
- Assembly
- PaintDotNet.Windows.Framework.dll
public enum HlslBinaryOperator
Fields
Add = 0Corresponds to the + binary operator.
Subtract = 1Corresponds to the - binary operator.
Multiply = 2Corresponds to the * binary operator.
Divide = 3Corresponds to the / binary operator.
Modulus = 4Corresponds to the % binary operator.
AddAsInt = 5Corresponds to the + binary operator.
SubtractAsInt = 6Corresponds to the - binary operator.
MultiplyAsInt = 7Corresponds to the * binary operator.
DivideAsInt = 8Corresponds to the / binary operator.
ModulusAsInt = 9Corresponds to the % binary operator.
BitwiseAnd = 10Corresponds to the & binary operator.
BitwiseOr = 11Corresponds to the | binary operator.
BitwiseXor = 12Corresponds to the ^ binary operator.