D3D12DDI_COMPARISON_FUNC - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// d3d12umddi.h

typedef enum D3D12DDI_COMPARISON_FUNC {
  D3D12DDI_COMPARISON_FUNC_NEVER,
  D3D12DDI_COMPARISON_FUNC_LESS,
  D3D12DDI_COMPARISON_FUNC_EQUAL,
  D3D12DDI_COMPARISON_FUNC_LESS_EQUAL,
  D3D12DDI_COMPARISON_FUNC_GREATER,
  D3D12DDI_COMPARISON_FUNC_NOT_EQUAL,
  D3D12DDI_COMPARISON_FUNC_GREATER_EQUAL,
  D3D12DDI_COMPARISON_FUNC_ALWAYS
} ;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-d3d12umddi-d3d12ddi_comparison_func)

D3D12DDI_COMPARISON_FUNC enumeration

Description

Indicates the type of comparison to perform.

Constants

D3D12DDI_COMPARISON_FUNC_NEVER

Do not compare.

D3D12DDI_COMPARISON_FUNC_LESS

Less than.

D3D12DDI_COMPARISON_FUNC_EQUAL

Equals.

D3D12DDI_COMPARISON_FUNC_LESS_EQUAL

Less than or equal to.

D3D12DDI_COMPARISON_FUNC_GREATER

Greater than.

D3D12DDI_COMPARISON_FUNC_NOT_EQUAL

Not equal to.

D3D12DDI_COMPARISON_FUNC_GREATER_EQUAL

Greater than or equal to.

D3D12DDI_COMPARISON_FUNC_ALWAYS

Always compare.

Remarks

See also