Enum D3D11ComparisonFunction
Comparison options.
Namespace: JeremyAnsel.DirectX.D3D11
Assembly: JeremyAnsel.DirectX.D3D11.dll
Syntax
public enum D3D11ComparisonFunction
Fields
| Name | Description |
|---|---|
| Always | Always pass the comparison. |
| Equal | If the source data is equal to the destination data, the comparison passes. |
| Greater | If the source data is greater than the destination data, the comparison passes. |
| GreaterEqual | If the source data is greater than or equal to the destination data, the comparison passes. |
| Less | If the source data is less than the destination data, the comparison passes. |
| LessEqual | If the source data is less than or equal to the destination data, the comparison passes. |
| Never | Never pass the comparison. |
| None | No value. |
| NotEqual | If the source data is not equal to the destination data, the comparison passes. |