Table of Contents

Enum HlslBinaryOperator

Namespace
PaintDotNet.Direct2D1.Effects
Assembly
PaintDotNet.Windows.Framework.dll
public enum HlslBinaryOperator

Fields

Add = 0

Corresponds to the + binary operator.

Subtract = 1

Corresponds to the - binary operator.

Multiply = 2

Corresponds to the * binary operator.

Divide = 3

Corresponds to the / binary operator.

Modulus = 4

Corresponds to the % binary operator.

AddAsInt = 5

Corresponds to the + binary operator.

SubtractAsInt = 6

Corresponds to the - binary operator.

MultiplyAsInt = 7

Corresponds to the * binary operator.

DivideAsInt = 8

Corresponds to the / binary operator.

ModulusAsInt = 9

Corresponds to the % binary operator.

BitwiseAnd = 10

Corresponds to the & binary operator.

BitwiseOr = 11

Corresponds to the | binary operator.

BitwiseXor = 12

Corresponds to the ^ binary operator.