// d3d10umddi.h
typedef enum D3D10_DDI_COMPARISON_FUNC {
D3D10_DDI_COMPARISON_NEVER,
D3D10_DDI_COMPARISON_LESS,
D3D10_DDI_COMPARISON_EQUAL,
D3D10_DDI_COMPARISON_LESS_EQUAL,
D3D10_DDI_COMPARISON_GREATER,
D3D10_DDI_COMPARISON_NOT_EQUAL,
D3D10_DDI_COMPARISON_GREATER_EQUAL,
D3D10_DDI_COMPARISON_ALWAYS
} ;
View the official Windows Driver Kit DDI referenceNo description available.
The D3D10_DDI_COMPARISON_FUNC enumeration type contains values that identify the comparison function to perform.
D3D10_DDI_COMPARISON_NEVERThe comparison never succeeds.
D3D10_DDI_COMPARISON_LESSThe comparison is a less-than operation.
D3D10_DDI_COMPARISON_EQUALThe comparison is an equal-to operation.
D3D10_DDI_COMPARISON_LESS_EQUALThe comparison is a less-than or equal-to operation.
D3D10_DDI_COMPARISON_GREATERThe comparison is a greater-than operation.
D3D10_DDI_COMPARISON_NOT_EQUALThe comparison is a not-equal-to operation.
D3D10_DDI_COMPARISON_GREATER_EQUALThe comparison is a greater-than or equal-to operation.
D3D10_DDI_COMPARISON_ALWAYSThe comparison always succeeds.
D3D10_DDI_DEPTH_STENCILOP_DESC