D3D12Comparator
The comparison operator to be used.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Enum
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public enum D3D12Comparator
Remarks
Specifies, which comparison operator to use when testing values against each other.
Fields
Value | Description |
|---|---|
| EqualTo | The operator tests if two values are equal. |
| GreaterThan | The operator tests if a specified value is greater than the reference value. |
| GreaterThanOrEqualTo | The operator tests if a specified value is greater than or equal to the reference value. |
| LessThan | The operator tests if a specified value is less than the reference value. |
| LessThanOrEqualTo | The operator tests if a specified value is less than or equal to the reference value. |
| NotEqualTo | The operator tests if two values are not equal. |