Click or drag to resize

glCompareFunc Enumeration

Namespace:  Ooogles
Assembly:  Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public enum CompareFunc
Members
  Member nameValueDescription
Never512 The function always fails.
Less513 For stencil operations, the function passes if (Ref and Mask) < (Stencil and Mask). For depth operations, the function passes if the incoming depth value is less than the stored depth value.
LessOrEqual515 For stencil operations, the function passes if (Ref and Mask) <= (Stencil and Mask). For depth operations, the function passes if the incoming depth value is less than or equal to the stored depth value.
Greater516 For stencil operations, the function passes if (Ref and Mask) > (Stencil and Mask). For depth operations, the function passes if the incoming depth value is greater than the stored depth value.
GreaterOrEqual518 For stencil operations, the function passes if (Ref and Mask) >= (Stencil and Mask). For depth operations, the function passes if the incoming depth value is greater than or equal to the stored depth value.
Equal514 For stencil operations, the function passes if (Ref and Mask) = (Stencil and Mask). For depth operations, the function passes if the incoming depth value is equal to the stored depth value.
NotEqual517 For stencil operations, the function passes if (Ref and Mask) != (Stencil and Mask). For depth operations, the function passes if the incoming depth value is not equal to the stored depth value.
Always519 The function always passes.
See Also