Enum HlslUnaryOperator
- Namespace
- PaintDotNet.Direct2D1.Effects
- Assembly
- PaintDotNet.Windows.Framework.dll
public enum HlslUnaryOperator
Fields
Negate = 0Corresponds to the - unary operator.
NegateAsInt = 1Corresponds to the - unary operator.
BitwiseNot = 2Corresponds to the ~ unary operator.
CastFloatToInt = 3Corresponds to the (int4) unary operator.
CastFloatToUInt = 4Corresponds to the (uint4) unary operator.
CastIntToFloat = 5Corresponds to the (float4) unary operator.
CastIntToUInt = 6Corresponds to the (uint4) unary operator.
CastUIntToFloat = 7Corresponds to the (float4) unary operator.
CastUIntToInt = 8Corresponds to the (int4) unary operator.